Skip to content

Instantly share code, notes, and snippets.

@glesica
Created October 22, 2011 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glesica/1306216 to your computer and use it in GitHub Desktop.
Save glesica/1306216 to your computer and use it in GitHub Desktop.
var forward = function($c) {
var t = window.setTimeout(function() {
if ($c.data('running')) {
goForward.call($c);
}
forward($c);
}, settings.delay);
}
forward($container);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment