From 796bb5ecf6b0dce700ea3c17bbda2ed49b6a84de Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Fri, 3 Feb 2012 15:58:41 -0800 Subject: removing the old v0.6 montage folder and updating the references --- .../montage-user/ui/checkbox.reel/checkbox.js | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 node_modules/montage-user/ui/checkbox.reel/checkbox.js (limited to 'node_modules/montage-user/ui/checkbox.reel/checkbox.js') diff --git a/node_modules/montage-user/ui/checkbox.reel/checkbox.js b/node_modules/montage-user/ui/checkbox.reel/checkbox.js deleted file mode 100644 index df2995c3..00000000 --- a/node_modules/montage-user/ui/checkbox.reel/checkbox.js +++ /dev/null @@ -1,26 +0,0 @@ -/* - This file contains proprietary software owned by Motorola Mobility, Inc.
- No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.
- (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. -
*/ -var Montage = require("montage").Montage, - Component = require("ui/component").Component, - CheckInput = require("ui/check-input").CheckInput; - -var Checkbox = exports.Checkbox = Montage.create(CheckInput, {}); -Checkbox.addAttributes({ - autofocus: 'off', // on/off - disabled: {value: false, dataType: 'boolean'}, - checked: {value: false, dataType: 'boolean'}, - form: null, - name: null, - readonly: {value: false, dataType: 'boolean'}, - title: null, - /* - "On getting, if the element has a value attribute, it must return that - attribute's value; otherwise, it must return the string "on". On setting, - it must set the element's value attribute to the new value." - http://www.w3.org/TR/html5/common-input-element-attributes.html#dom-input-value-default-on - */ - value: {value: 'on'} -}); -- cgit v1.2.3