summaryrefslogtreecommitdiff
path: root/js/dojo-1.7.2/dijit/layout/AccordionPane.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo-1.7.2/dijit/layout/AccordionPane.js')
-rw-r--r--js/dojo-1.7.2/dijit/layout/AccordionPane.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/js/dojo-1.7.2/dijit/layout/AccordionPane.js b/js/dojo-1.7.2/dijit/layout/AccordionPane.js
new file mode 100644
index 0000000..8b99183
--- /dev/null
+++ b/js/dojo-1.7.2/dijit/layout/AccordionPane.js
@@ -0,0 +1,32 @@
+//>>built
+define("dijit/layout/AccordionPane", [
+ "dojo/_base/declare", // declare
+ "dojo/_base/kernel", // kernel.deprecated
+ "./ContentPane"
+], function(declare, kernel, ContentPane){
+
+/*=====
+ var ContentPane = dijit.layout.ContentPane;
+=====*/
+
+ // module:
+ // dijit/layout/AccordionPane
+ // summary:
+ // Deprecated widget. Use `dijit.layout.ContentPane` instead.
+
+ return declare("dijit.layout.AccordionPane", ContentPane, {
+ // summary:
+ // Deprecated widget. Use `dijit.layout.ContentPane` instead.
+ // tags:
+ // deprecated
+
+ constructor: function(){
+ kernel.deprecated("dijit.layout.AccordionPane deprecated, use ContentPane instead", "", "2.0");
+ },
+
+ onSelected: function(){
+ // summary:
+ // called when this pane is selected
+ }
+ });
+});