From 0181c0110985cfd2659e81c8cc1ef5a2f73bc697 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 14 Aug 2012 19:04:32 +0400 Subject: dojo: remove uncompressed files --- lib/dijit/form/ComboBox.js.uncompressed.js | 34 ------------------------------ 1 file changed, 34 deletions(-) delete mode 100644 lib/dijit/form/ComboBox.js.uncompressed.js (limited to 'lib/dijit/form/ComboBox.js.uncompressed.js') diff --git a/lib/dijit/form/ComboBox.js.uncompressed.js b/lib/dijit/form/ComboBox.js.uncompressed.js deleted file mode 100644 index a72f24797..000000000 --- a/lib/dijit/form/ComboBox.js.uncompressed.js +++ /dev/null @@ -1,34 +0,0 @@ -define("dijit/form/ComboBox", [ - "dojo/_base/declare", // declare - "./ValidationTextBox", - "./ComboBoxMixin" -], function(declare, ValidationTextBox, ComboBoxMixin){ - -/*===== - var ValidationTextBox = dijit.form.ValidationTextBox; - var ComboBoxMixin = dijit.form.ComboBoxMixin; -=====*/ - - // module: - // dijit/form/ComboBox - // summary: - // Auto-completing text box - - return declare("dijit.form.ComboBox", [ValidationTextBox, ComboBoxMixin], { - // summary: - // Auto-completing text box - // - // description: - // The drop down box's values are populated from an class called - // a data provider, which returns a list of values based on the characters - // that the user has typed into the input box. - // If OPTION tags are used as the data provider via markup, - // then the OPTION tag's child text node is used as the widget value - // when selected. The OPTION tag's value attribute is ignored. - // To set the default value when using OPTION tags, specify the selected - // attribute on 1 of the child OPTION tags. - // - // Some of the options to the ComboBox are actually arguments to the data - // provider. - }); -}); -- cgit v1.2.3