BUG: Fix tab state not being restored due to incorrect selector.

Closes #2321.
This commit is contained in:
Andrew Short 2013-10-12 01:09:31 +11:00
parent 9c75fc06e7
commit 3f7b3fddc9

View File

@ -738,7 +738,7 @@ jQuery.noConflict();
sessionData = hasSessionStorage ? window.sessionStorage.getItem('tabs-' + url) : null,
sessionStates = sessionData ? JSON.parse(sessionData) : false;
this.find('.cms-tabset').each(function() {
this.find('.cms-tabset, .ss-tabset').each(function() {
var index, tabset = $(this), tabsetId = tabset.attr('id'), tab,
forcedTab = tabset.find('.ss-tabs-force-active');