This commit is contained in:
Keegan
2016-02-09 17:20:44 -08:00
parent f66afea3a5
commit 130078709d
+2 -2
View File
@@ -31,7 +31,7 @@ module.exports = {
return this.$manipulatorTarget.get('value'); return this.$manipulatorTarget.get('value');
}, },
set: function(value) { set: function(value) {
this.$manipulatorTarget.set('value', value) this.$manipulatorTarget.set('value', value);
return this.trigger('change'); return this.trigger('change');
}, },
disable: disable, disable: disable,
@@ -42,7 +42,7 @@ module.exports = {
return this.$manipulatorTarget.get('checked'); return this.$manipulatorTarget.get('checked');
}, },
set: function(value) { set: function(value) {
this.$manipulatorTarget.set('checked', value) this.$manipulatorTarget.set('checked', value);
return this.trigger('change'); return this.trigger('change');
}, },
disable: disable, disable: disable,