summaryrefslogtreecommitdiff
path: root/lib/dijit/form/Textarea.js.uncompressed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-02 20:06:16 +0400
committerAndrew Dolgov <[email protected]>2013-04-02 20:06:16 +0400
commit870334be3f58507c05bfc72f3edbe5db10af4caf (patch)
tree441e1c41780eb75d422025cabea17724e2cc4a79 /lib/dijit/form/Textarea.js.uncompressed.js
parent7caa48fe6a3a37bd08f846f90e407ef31171f12c (diff)
remove dojo uncompressed files
Diffstat (limited to 'lib/dijit/form/Textarea.js.uncompressed.js')
-rw-r--r--lib/dijit/form/Textarea.js.uncompressed.js42
1 files changed, 0 insertions, 42 deletions
diff --git a/lib/dijit/form/Textarea.js.uncompressed.js b/lib/dijit/form/Textarea.js.uncompressed.js
deleted file mode 100644
index c3c738bdd..000000000
--- a/lib/dijit/form/Textarea.js.uncompressed.js
+++ /dev/null
@@ -1,42 +0,0 @@
-define("dijit/form/Textarea", [
- "dojo/_base/declare", // declare
- "dojo/dom-style", // domStyle.set
- "./_ExpandingTextAreaMixin",
- "./SimpleTextarea"
-], function(declare, domStyle, _ExpandingTextAreaMixin, SimpleTextarea){
-
-// module:
-// dijit/form/Textarea
-
-
-return declare("dijit.form.Textarea", [SimpleTextarea, _ExpandingTextAreaMixin], {
- // summary:
- // A textarea widget that adjusts it's height according to the amount of data.
- //
- // description:
- // A textarea that dynamically expands/contracts (changing it's height) as
- // the user types, to display all the text without requiring a scroll bar.
- //
- // Takes nearly all the parameters (name, value, etc.) that a vanilla textarea takes.
- // Rows is not supported since this widget adjusts the height.
- //
- // example:
- // | <textarea data-dojo-type="dijit/form/TextArea">...</textarea>
-
-
- // TODO: for 2.0, rename this to ExpandingTextArea, and rename SimpleTextarea to TextArea
-
- baseClass: "dijitTextBox dijitTextArea dijitExpandingTextArea",
-
- // Override SimpleTextArea.cols to default to width:100%, for backward compatibility
- cols: "",
-
- buildRendering: function(){
- this.inherited(arguments);
-
- // tweak textarea style to reduce browser differences
- domStyle.set(this.textbox, { overflowY: 'hidden', overflowX: 'auto', boxSizing: 'border-box', MsBoxSizing: 'border-box', WebkitBoxSizing: 'border-box', MozBoxSizing: 'border-box' });
- }
-});
-
-});