]> git.wh0rd.org - tt-rss.git/blob - lib/dijit/layout/AccordionPane.js.uncompressed.js
update dojo to 1.7.3
[tt-rss.git] / lib / dijit / layout / AccordionPane.js.uncompressed.js
1 define("dijit/layout/AccordionPane", [
2 "dojo/_base/declare", // declare
3 "dojo/_base/kernel", // kernel.deprecated
4 "./ContentPane"
5 ], function(declare, kernel, ContentPane){
6
7 /*=====
8 var ContentPane = dijit.layout.ContentPane;
9 =====*/
10
11 // module:
12 // dijit/layout/AccordionPane
13 // summary:
14 // Deprecated widget. Use `dijit.layout.ContentPane` instead.
15
16 return declare("dijit.layout.AccordionPane", ContentPane, {
17 // summary:
18 // Deprecated widget. Use `dijit.layout.ContentPane` instead.
19 // tags:
20 // deprecated
21
22 constructor: function(){
23 kernel.deprecated("dijit.layout.AccordionPane deprecated, use ContentPane instead", "", "2.0");
24 },
25
26 onSelected: function(){
27 // summary:
28 // called when this pane is selected
29 }
30 });
31 });