Browse Source

Tab: Fix bug when tab initialized with 0 elements

pull/954/head
jlukic 10 years ago
parent
commit
cf10c84cb2
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/tab.js

2
src/definitions/modules/tab.js

@ -689,7 +689,7 @@ $.tab = $.fn.tab = function(parameters) {
}
})
;
if(!methodInvoked) {
if(module && !methodInvoked) {
module.initializeHistory();
}
return (returnedValue !== undefined)

Loading…
Cancel
Save