Skip to content

Instantly share code, notes, and snippets.

@zenorocha
Created November 19, 2012 01:13
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 zenorocha/4108453 to your computer and use it in GitHub Desktop.
Save zenorocha/4108453 to your computer and use it in GitHub Desktop.
alphabetical ordered or not?
AUI().ready('aui-carousel', function(A) {
var carousel = new A.Carousel({
activeIndex: 'rand',
contentBox: '#demo',
intervalTime: 2,
height: 254,
width: 680
}).render();
});
AUI().ready('aui-carousel', function(A) {
var carousel = new A.Carousel({
contentBox: '#demo',
width: 680,
height: 254,
activeIndex: 'rand',
intervalTime: 2
}).render();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment