mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-04 03:45:58 -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(
|
||||
DomElement.get(this, that._info.value || 'value'));
|
||||
if (fireChange) {
|
||||
that._palette.fire('change', that, that.name, value);
|
||||
that.fire('change', value);
|
||||
that._palette.fire('change', that, that.name, that._value);
|
||||
that.fire('change', that._value);
|
||||
}
|
||||
},
|
||||
click: function() {
|
||||
|
|
Loading…
Reference in a new issue