]> git.wh0rd.org - tt-rss.git/blobdiff - lib/dijit/form/MappedTextBox.js.uncompressed.js
modify dojo rebuild script to remove uncompressed files
[tt-rss.git] / lib / dijit / form / MappedTextBox.js.uncompressed.js
index 2f8f69d19e534f49e78d1b81311c4d211034a526..1f9ed7509afab014a51f95820e4fb616fa9dbfcb 100644 (file)
@@ -4,27 +4,19 @@ define("dijit/form/MappedTextBox", [
        "./ValidationTextBox"
 ], function(declare, domConstruct, ValidationTextBox){
 
-/*=====
-       var ValidationTextBox = dijit.form.ValidationTextBox;
-=====*/
-
        // module:
        //              dijit/form/MappedTextBox
-       // summary:
-       //              A dijit.form.ValidationTextBox subclass which provides a base class for widgets that have
-       //              a visible formatted display value, and a serializable
-       //              value in a hidden input field which is actually sent to the server.
 
        return declare("dijit.form.MappedTextBox", ValidationTextBox, {
                // summary:
-               //              A dijit.form.ValidationTextBox subclass which provides a base class for widgets that have
+               //              A dijit/form/ValidationTextBox subclass which provides a base class for widgets that have
                //              a visible formatted display value, and a serializable
                //              value in a hidden input field which is actually sent to the server.
                // description:
                //              The visible display may
                //              be locale-dependent and interactive.  The value sent to the server is stored in a hidden
                //              input field which uses the `name` attribute declared by the original widget.  That value sent
-               //              to the server is defined by the dijit.form.MappedTextBox.serialize method and is typically
+               //              to the server is defined by the dijit/form/MappedTextBox.serialize() method and is typically
                //              locale-neutral.
                // tags:
                //              protected
@@ -62,13 +54,13 @@ define("dijit/form/MappedTextBox", [
                },
 
                validate: function(){
-                       // Overrides `dijit.form.TextBox.validate`
+                       // Overrides `dijit/form/TextBox.validate`
                        this.valueNode.value = this.toString();
                        return this.inherited(arguments);
                },
 
                buildRendering: function(){
-                       // Overrides `dijit._TemplatedMixin.buildRendering`
+                       // Overrides `dijit/_TemplatedMixin/buildRendering`
 
                        this.inherited(arguments);
 
@@ -76,11 +68,11 @@ define("dijit/form/MappedTextBox", [
                        // (as opposed to the displayed value).
                        // Passing in name as markup rather than calling domConstruct.create() with an attrs argument
                        // to make query(input[name=...]) work on IE. (see #8660)
-                       this.valueNode = domConstruct.place("<input type='hidden'" + (this.name ? " name='" + this.name.replace(/'/g, "&quot;") + "'" : "") + "/>", this.textbox, "after");
+                       this.valueNode = domConstruct.place("<input type='hidden'" + (this.name ? ' name="' + this.name.replace(/"/g, "&quot;") + '"' : "") + "/>", this.textbox, "after");
                },
 
                reset: function(){
-                       // Overrides `dijit.form.ValidationTextBox.reset` to
+                       // Overrides `dijit/form/ValidationTextBox.reset` to
                        // reset the hidden textbox value to ''
                        this.valueNode.value = '';
                        this.inherited(arguments);