/* 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.
*/ /** @module "montage/ui/input-date.reel" @requires montage/ui/component @requires montage/ui/text-input */ var Montage = require("montage").Montage, Component = require("ui/component").Component, NativeInputDate = require("ui/native/input-date.reel").InputDate; /** * Wraps the a <input type="date"> element with binding support for the element's standard attributes. @class module:"montage/ui/input-date.reel".InputDate @extends module:"montage/native/input-date.reel".NativeInputDate */ exports.InputDate = Montage.create(NativeInputDate, { hasTemplate: { value: true }, didSetElement: { value: function() { NativeInputDate.didSetElement.call(this); this['class'] = (this['class'] || '') + ' ' + 'montage-inputDate montage-inputText'; } } });