Browse Source

Fixes #1990, tab affected by casing

pull/2034/head
jlukic 9 years ago
parent
commit
1eca246865
1 changed files with 3 additions and 0 deletions
  1. 3
      src/definitions/modules/tab.js

3
src/definitions/modules/tab.js

@ -258,6 +258,9 @@ $.fn.tab = function(parameters) {
changeTab: function(tabPath) {
var
tabPath = (typeof tabPath == 'string')
? tabPath.toLowerCase()
: tabPath,
pushStateAvailable = (window.history && window.history.pushState),
shouldIgnoreLoad = (pushStateAvailable && settings.ignoreFirstLoad && firstLoad),
remoteContent = (settings.auto || $.isPlainObject(settings.apiSettings) ),

Loading…
Cancel
Save