dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
19 lines (14 loc) • 442 B
JavaScript
define([
"dojo/_base/kernel",
"dojo/_base/declare",
"./Container"
], function(kernel, declare, Container){
kernel.deprecated("dojox/mobile/FixedSplitterPane", "Use dojox/mobile/Container instead", 2.0);
// module:
// dojox/mobile/FixedSplitterPane
return declare("dojox.mobile.FixedSplitterPane", Container, {
// summary:
// Deprecated widget. Use dojox/mobile/Container instead.
baseClass: "mblFixedSplitterPane"
});
});