Skip to content

Instantly share code, notes, and snippets.

@jakearchibald
Created October 20, 2009 11:13
Show Gist options
  • Save jakearchibald/214186 to your computer and use it in GitHub Desktop.
Save jakearchibald/214186 to your computer and use it in GitHub Desktop.
var listenerRef;
function addListener() {
listenerRef = glow.events.addListener(myCarousel2, 'afterScroll', afterScrollListener);
}
fucntion removeListener() {
glow.events.removeListener(listenerRef);
}
fucntion afterScrollListener() {
myCarousel2.moveBy(1, true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment