mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
BUGFIX Fixed ui.tabs saving into cookies in LeftAndMain.js and CMSMain.js
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@92620 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
0935da6aad
commit
8db33cc65e
@ -20,9 +20,6 @@
|
||||
});
|
||||
|
||||
this._resizeChildren();
|
||||
|
||||
// save cookie state of all tabs
|
||||
$('.ss-tabset').tabs('option', 'cookie', { expires: 30 });
|
||||
|
||||
this._super();
|
||||
},
|
||||
|
@ -220,7 +220,8 @@
|
||||
// All tab contents are closed by default.
|
||||
this.tabs({
|
||||
collapsible: true,
|
||||
selected: null
|
||||
selected: parseInt(jQuery.cookie('ui-tabs-TreeActions')) || null,
|
||||
cookie: { expires: 30, path: '/', name: 'ui-tabs-TreeActions' }
|
||||
});
|
||||
}
|
||||
}});
|
||||
|
Loading…
Reference in New Issue
Block a user