dijit
Version:
Dijit provides a complete collection of user interface controls based on Dojo, giving you the power to create web applications that are highly optimized for usability, performance, internationalization, accessibility, but above all deliver an incredible u
26 lines (21 loc) • 590 B
JavaScript
define([
"dojo/_base/declare", // declare
"dojo/_base/kernel", // kernel.deprecated
"./ContentPane"
], function(declare, kernel, ContentPane){
// module:
// dijit/layout/AccordionPane
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
}
});
});