Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions jquery.joyride-2.0.3.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
'tipContainer' : 'body', // Where will the tip be attached
'postRideCallback' : $.noop, // A method to call once the tour closes (canceled or complete)
'postStepCallback' : $.noop, // A method to call after each step
'afterShowCallback' : $.noop, // A method to call before each step
'template' : { // HTML segments for tip layout
'link' : '<a href="#close" class="joyride-close-tip">X</a>',
'timer' : '<div class="joyride-timer-indicator-wrap"><span class="joyride-timer-indicator"></span></div>',
Expand Down Expand Up @@ -297,6 +298,9 @@
methods.end();

}

settings.afterShowCallback(settings.$li.index(), settings.$current_tip);

} else {

settings.paused = true;
Expand Down