Lines Matching refs:opts

959 ,	renameOptions: function (opts) {  argument
980 , D = { branch: opts, key: a[c] } // init branch at top & set key (last item)
1001 , renameAllOptions: function (opts) {
1004 ren( opts );
1006 if (opts.defaults) {
1007 if (typeof opts.panes !== "object")
1008 opts.panes = {};
1009 $.extend(true, opts.panes, opts.defaults);
1010 delete opts.defaults;
1013 if (opts.panes) ren( opts.panes );
1016 if (opts[pane]) ren( opts[pane] );
1018 return opts;
1029 $.fn.layout = function (opts) { argument
1645 , createChildren = function (evt_or_pane, opts) { argument
1654 , cos = opts ? (o.children = opts) : o.children
2016 opts = $.layout.transformData( opts, true ); // panes = default subkey
2019 opts = $.layout.backwardCompatibility.renameAllOptions( opts );
2022 if (!$.isEmptyObject(opts.panes)) {
2027 delete opts.panes[key]; // OK if does not exist
2033 delete opts.panes[key]; // OK if does not exist
2040 for (key in opts) {
2041 val = opts[key];
2043 if (!opts.panes[key])
2044 opts.panes[key] = $.isPlainObject(val) ? $.extend(true, {}, val) : val;
2045 delete opts[key]
2050 $.extend(true, options, opts);
2068 if (!opts.center[key] && (opts.panes[key] || !o[key]))
2085 var zo = opts.zIndex
5359 , loadState: function (inst, data, opts) { argument
5367 opts = $.extend({
5370 }, opts );
5390 var noAnimate = !opts.animateLoad
5423 if (opts.includeChildren) {
5445 , readState: function (inst, opts) {
5447 if ($.type(opts) === 'string') opts = { keys: opts };
5448 if (!opts) opts = {};
5450 , ic = opts.includeChildren
5452 , keys = opts.stateKeys || sm.stateKeys
5551 , loadState: function (stateData, opts) { s.loadState(inst, stateData, opts); } argument