From 130078709d98daebb388fe7ab137d791cc2de5bb Mon Sep 17 00:00:00 2001 From: Keegan Date: Sat, 6 Feb 2016 18:44:24 -0800 Subject: [PATCH] linting --- src/scripts/lib/manipulators.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scripts/lib/manipulators.js b/src/scripts/lib/manipulators.js index 9e0d999..15738fa 100755 --- a/src/scripts/lib/manipulators.js +++ b/src/scripts/lib/manipulators.js @@ -31,7 +31,7 @@ module.exports = { return this.$manipulatorTarget.get('value'); }, set: function(value) { - this.$manipulatorTarget.set('value', value) + this.$manipulatorTarget.set('value', value); return this.trigger('change'); }, disable: disable, @@ -42,7 +42,7 @@ module.exports = { return this.$manipulatorTarget.get('checked'); }, set: function(value) { - this.$manipulatorTarget.set('checked', value) + this.$manipulatorTarget.set('checked', value); return this.trigger('change'); }, disable: disable,