mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
Fix small newly introduced bug.
This commit is contained in:
parent
4945a45a99
commit
5097bf37ff
1 changed files with 2 additions and 2 deletions
|
@ -75,8 +75,8 @@ var Component = this.Component = Base.extend(Callback, /** @lends Component# */{
|
||||||
that.setValue(
|
that.setValue(
|
||||||
DomElement.get(this, that._info.value || 'value'));
|
DomElement.get(this, that._info.value || 'value'));
|
||||||
if (fireChange) {
|
if (fireChange) {
|
||||||
that._palette.fire('change', that, that.name, value);
|
that._palette.fire('change', that, that.name, that._value);
|
||||||
that.fire('change', value);
|
that.fire('change', that._value);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
click: function() {
|
click: function() {
|
||||||
|
|
Loading…
Reference in a new issue