aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js
diff options
context:
space:
mode:
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});