aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js
diff options
context:
space:
mode:
authorKris Kowal2012-07-06 11:53:10 -0700
committerKris Kowal2012-07-06 15:01:48 -0700
commit04343eda8c2f870b0da55cfdc8003c99fe1cc4de (patch)
tree0a6048889b65bb16ff58822e55bc1346e9eb07bd /node_modules/montage/ui/input-checkbox.reel/input-checkbox.js
parent648ee61ae84216d0236e0dbc211addc13b2cfa3a (diff)
downloadninja-04343eda8c2f870b0da55cfdc8003c99fe1cc4de.tar.gz
Remove trailing spaces
Diffstat (limited to 'node_modules/montage/ui/input-checkbox.reel/input-checkbox.js')
-rw-r--r--node_modules/montage/ui/input-checkbox.reel/input-checkbox.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js b/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js
index d0c32821..b446d7b9 100644
--- a/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js
+++ b/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js
@@ -30,20 +30,20 @@ POSSIBILITY OF SUCH DAMAGE.
30/*global require,exports */ 30/*global require,exports */
31var Montage = require("montage").Montage, 31var Montage = require("montage").Montage,
32 Component = require("ui/component").Component, 32 Component = require("ui/component").Component,
33 NativeInputCheckbox = require("ui/native/input-checkbox.reel").InputCheckbox; 33 NativeInputCheckbox = require("ui/native/input-checkbox.reel").InputCheckbox;
34 34
35/** 35/**
36 * Input Checkbox 36 * Input Checkbox
37 */ 37 */
38exports.InputCheckbox = Montage.create(NativeInputCheckbox, { 38exports.InputCheckbox = Montage.create(NativeInputCheckbox, {
39 39
40 hasTemplate: {value: true}, 40 hasTemplate: {value: true},
41 41
42 didSetElement: { 42 didSetElement: {
43 value: function() { 43 value: function() {
44 NativeInputCheckbox.didSetElement.call(this); 44 NativeInputCheckbox.didSetElement.call(this);
45 this['class'] = (this['class'] || '') + ' montage-inputCheckbox'; 45 this['class'] = (this['class'] || '') + ' montage-inputCheckbox';
46 } 46 }
47 } 47 }
48 48
49}); 49});