fix colors change events

This commit is contained in:
Keegan
2016-01-19 14:13:00 -08:00
parent a3024d49bb
commit dadd41e8d5
3 changed files with 9 additions and 15 deletions
+2 -4
View File
@@ -19,12 +19,10 @@ module.exports = {
.trigger('change');
},
disable: function() {
return this.$manipulatorTarget.set('disabled', true)
.trigger('change');
return this.$manipulatorTarget.set('disabled', true);
},
enable: function() {
return this.$manipulatorTarget.set('disabled', false)
.trigger('change');
return this.$manipulatorTarget.set('disabled', false);
}
},
checked: {