You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/externals/dojo/dijit/layout/AccordionPane.js

19 lines
472 B
JavaScript

dojo.provide("dijit.layout.AccordionPane");
dojo.require("dijit.layout.ContentPane");
dojo.declare("dijit.layout.AccordionPane", dijit.layout.ContentPane, {
// summary:
// Deprecated widget. Use `dijit.layout.ContentPane` instead.
// tags:
// deprecated
constructor: function(){
dojo.deprecated("dijit.layout.AccordionPane deprecated, use ContentPane instead", "", "2.0");
},
onSelected: function(){
// summary: called when this pane is selected
}
});