Skip to content
This repository was archived by the owner on Nov 18, 2024. It is now read-only.
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions source/jquery.slides.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@
# Stop/pause slideshow on mouse enter
slidesContainer.bind "mouseenter", =>
clearTimeout @data.restartDelay
$.data this, "restartDelay", null
$.data this, "restartDelay", null
@stop()

# Play slideshow on mouse leave
Expand Down Expand Up @@ -609,7 +609,7 @@
zIndex: 10

# Start the slide animation
@options.callback.start(currentSlide + 1)
@options.callback.start(currentSlide + 1, next + 1)

if @data.vendorPrefix
# If supported use CSS3 for the animation
Expand Down Expand Up @@ -723,7 +723,7 @@
zIndex: 10

# Start of the animation, call the start callback
@options.callback.start(currentSlide + 1)
@options.callback.start(currentSlide + 1, next + 1)

if @options.effect.fade.crossfade
# Fade out current slide to next slide
Expand Down
176 changes: 84 additions & 92 deletions source/jquery.slides.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading