Skip to content

Instantly share code, notes, and snippets.

@mente
Created December 28, 2011 01:53
Show Gist options
  • Save mente/1525784 to your computer and use it in GitHub Desktop.
Save mente/1525784 to your computer and use it in GitHub Desktop.
--- a/server/modules/http-plugin/web/js/cloud-carousel.1.0.5.js
+++ b/server/modules/http-plugin/web/js/cloud-carousel.1.0.5.js
@@ -209,6 +207,9 @@
this.rotate = function(direction)
{
this.frontIndex -= direction;
+ if (this.frontIndex < 0) {
+ this.frontIndex = items.length - 1;
+ }
this.frontIndex %= items.length;
this.destRotation += ( Math.PI / items.length ) * ( 2*direction );
this.showFrontText();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment