aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/textfield.reel/textfield.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-02-16 10:54:48 -0800
committerValerio Virgillito2012-02-16 10:54:48 -0800
commitd52aca45e0357b5597e13d9b74998abb75fabea5 (patch)
treeffd4a0c060b00611953b7e3ed0b3955bf02ac6e7 /node_modules/montage/ui/textfield.reel/textfield.js
parentd366c0bd1af6471511217ed574083e15059519b5 (diff)
downloadninja-d52aca45e0357b5597e13d9b74998abb75fabea5.tar.gz
integrating the latest montage fixes for v0.6 into master
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/textfield.reel/textfield.js')
-rw-r--r--node_modules/montage/ui/textfield.reel/textfield.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/node_modules/montage/ui/textfield.reel/textfield.js b/node_modules/montage/ui/textfield.reel/textfield.js
index b16e685b..b78f7b29 100644
--- a/node_modules/montage/ui/textfield.reel/textfield.js
+++ b/node_modules/montage/ui/textfield.reel/textfield.js
@@ -5,13 +5,10 @@
5 </copyright> */ 5 </copyright> */
6var Montage = require("montage").Montage, 6var Montage = require("montage").Montage,
7 Component = require("ui/component").Component, 7 Component = require("ui/component").Component,
8 TextInput = require("ui/text-input").TextInput, 8 TextInput = require("ui/text-input").TextInput;
9 StandardInputAttributes = require("ui/text-input").StandardInputAttributes;
10/** 9/**
11 * The Text input 10 * The Text input
12 */ 11 */
13var Textfield = exports.Textfield = Montage.create(TextInput, { 12var Textfield = exports.Textfield = Montage.create(TextInput, {
14}); 13});
15 14
16// Standard <input> tag attributes - http://www.w3.org/TR/html5/the-input-element.html#the-input-element
17Textfield.addAttributes(StandardInputAttributes);