mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 20:05:55 +00:00
update dojo to 1.7.3
This commit is contained in:
31
lib/dijit/layout/AccordionPane.js.uncompressed.js
Normal file
31
lib/dijit/layout/AccordionPane.js.uncompressed.js
Normal file
@@ -0,0 +1,31 @@
|
||||
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
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user