mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Tabs: Removed instances of " .. + (++ .." to avoid a minification bug in closure compiler. Fixes #5576 - invalid increment operand.
This commit is contained in:
parent
bf673476ee
commit
fcbf4c0872
12
ui/jquery.ui.tabs.js
vendored
12
ui/jquery.ui.tabs.js
vendored
@ -16,6 +16,14 @@
|
||||
var tabId = 0,
|
||||
listId = 0;
|
||||
|
||||
function getNextTabId() {
|
||||
return ++tabId;
|
||||
}
|
||||
|
||||
function getNextListId() {
|
||||
return ++listId;
|
||||
}
|
||||
|
||||
$.widget("ui.tabs", {
|
||||
options: {
|
||||
add: null,
|
||||
@ -56,7 +64,7 @@ $.widget("ui.tabs", {
|
||||
|
||||
_tabId: function(a) {
|
||||
return a.title && a.title.replace(/\s/g, '_').replace(/[^A-Za-z0-9\-_:\.]/g, '') ||
|
||||
this.options.idPrefix + (++tabId);
|
||||
this.options.idPrefix + getNextTabId();
|
||||
},
|
||||
|
||||
_sanitizeSelector: function(hash) {
|
||||
@ -64,7 +72,7 @@ $.widget("ui.tabs", {
|
||||
},
|
||||
|
||||
_cookie: function() {
|
||||
var cookie = this.cookie || (this.cookie = this.options.cookie.name || 'ui-tabs-' + (++listId));
|
||||
var cookie = this.cookie || (this.cookie = this.options.cookie.name || 'ui-tabs-' + getNextListId());
|
||||
return $.cookie.apply(null, [cookie].concat($.makeArray(arguments)));
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user