Previous/next ignores hidden tabs
I noticed that, when you use the previous/next buttons in conjunction with the provided hide/show functionality of your library, hidden tabs are still shown when navigating with the buttons.
Solution i found was changing the "baseItemSelector" to only select visible elements, like so:
Original:
var baseItemSelector = 'li:has([data-toggle="tab"])';
Modified
var baseItemSelector = 'li:has([data-toggle="tab"]):visible';
Not sure if this has any other implications, but it seemed to do the trick for me
I also found this issue for disabled tabs. The tab / li has the disabled class added but previous navigates to the disabled tab regardless.
I only had one tab which I needed to disable on a certain condition so I simply disabled the Prev button instead in the onTabShow event if the condition was met for that tab.
https://github.com/VinceG/twitter-bootstrap-wizard/pull/140
I am facing same issue as @mflalor do. Also I can click on the disabled tab, even if it is disabled.