VinceG / twitter-bootstrap-wizard

This twitter bootstrap plugin builds a wizard out of a formatter tabbable structure. It allows to build a wizard functionality using buttons to go through the different wizard steps and using events allows to hook into each step individually.
MIT License
1.39k stars 676 forks source link

Release latest changes #55

Closed kyrstenkelly closed 10 years ago

kyrstenkelly commented 10 years ago

I would like some of the changes you've made since your last release, could you release the latest changes?

VinceG commented 10 years ago

@kyrstenkelly What changes? Just checkout master and you should have the latest changes.

kyrstenkelly commented 10 years ago

Sorry, we are using an old version of bower that grabs the latest tag rather than the latest of a branch. So it's pulling in your 1.0.0 tag. Git says there have been 13 commits to master since the last release, and we are looking for this change:

-    $($settings.nextSelector, element).unbind('click', obj.next);
 -    $($settings.previousSelector, element).unbind('click', obj.previous);
 -    $($settings.lastSelector, element).unbind('click', obj.last);
 -    $($settings.firstSelector, element).unbind('click', obj.first);
 -    // Next/Previous events
 -    $($settings.nextSelector, element).one('click', obj.next);
 -    $($settings.previousSelector, element).one('click', obj.previous);
 -    $($settings.lastSelector, element).one('click', obj.last);
 -    $($settings.firstSelector, element).one('click', obj.first);
 +    obj.rebindClick($($settings.nextSelector, element), obj.next);
 +    obj.rebindClick($($settings.previousSelector, element), obj.previous);
 +    obj.rebindClick($($settings.lastSelector, element), obj.last);
 +    obj.rebindClick($($settings.firstSelector, element), obj.first);
VinceG commented 10 years ago

@kyrstenkelly Sorry, you are correct. i haven't updated bower. i'll try and do that this week.

kyrstenkelly commented 10 years ago

Thanks!