├── .editorconfig ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Gruntfile.coffee ├── README.md ├── api ├── README.md ├── events │ ├── pause.md │ ├── play.md │ ├── ready.md │ ├── restart.md │ ├── stop.md │ ├── transitioncomplete.md │ └── transitionstart.md ├── methods │ ├── $.md │ ├── addslide.md │ ├── first.md │ ├── goto.md │ ├── last.md │ ├── next.md │ ├── off.md │ ├── on.md │ ├── one.md │ ├── pause.md │ ├── play.md │ ├── previous.md │ ├── registertransition.md │ ├── reset.md │ ├── restart.md │ ├── setoptions.md │ ├── setselectorengine.md │ ├── stop.md │ └── trigger.md ├── options │ ├── autoplay.md │ ├── container.md │ ├── containerselector.md │ ├── onpause.md │ ├── onplay.md │ ├── onready.md │ ├── onrestart.md │ ├── onstop.md │ ├── rotationspeed.md │ ├── slides.md │ ├── slidesselector.md │ ├── transition.md │ ├── transition.name.md │ ├── transition.oncomplete.md │ └── transition.onstart.md └── props │ ├── currentslide.md │ ├── disabled.md │ ├── intervalid.md │ ├── isanimating.md │ ├── iteration.md │ ├── lastslide.md │ ├── nextslide.md │ ├── numslides.md │ ├── options.md │ ├── previousslide.md │ ├── slides.md │ └── status.md ├── bower.json ├── dist ├── revolver.js ├── revolver.js.map ├── revolver.min.js └── revolver.min.js.map ├── git-hooks └── pre-commit ├── package.json ├── src ├── revolver.coffee └── tests.coffee └── test ├── revolver.html └── tests.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/README.md -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/README.md -------------------------------------------------------------------------------- /api/events/pause.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/events/pause.md -------------------------------------------------------------------------------- /api/events/play.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/events/play.md -------------------------------------------------------------------------------- /api/events/ready.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/events/ready.md -------------------------------------------------------------------------------- /api/events/restart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/events/restart.md -------------------------------------------------------------------------------- /api/events/stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/events/stop.md -------------------------------------------------------------------------------- /api/events/transitioncomplete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/events/transitioncomplete.md -------------------------------------------------------------------------------- /api/events/transitionstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/events/transitionstart.md -------------------------------------------------------------------------------- /api/methods/$.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/$.md -------------------------------------------------------------------------------- /api/methods/addslide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/addslide.md -------------------------------------------------------------------------------- /api/methods/first.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/first.md -------------------------------------------------------------------------------- /api/methods/goto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/goto.md -------------------------------------------------------------------------------- /api/methods/last.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/last.md -------------------------------------------------------------------------------- /api/methods/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/next.md -------------------------------------------------------------------------------- /api/methods/off.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/off.md -------------------------------------------------------------------------------- /api/methods/on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/on.md -------------------------------------------------------------------------------- /api/methods/one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/one.md -------------------------------------------------------------------------------- /api/methods/pause.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/pause.md -------------------------------------------------------------------------------- /api/methods/play.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/play.md -------------------------------------------------------------------------------- /api/methods/previous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/previous.md -------------------------------------------------------------------------------- /api/methods/registertransition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/registertransition.md -------------------------------------------------------------------------------- /api/methods/reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/reset.md -------------------------------------------------------------------------------- /api/methods/restart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/restart.md -------------------------------------------------------------------------------- /api/methods/setoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/setoptions.md -------------------------------------------------------------------------------- /api/methods/setselectorengine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/setselectorengine.md -------------------------------------------------------------------------------- /api/methods/stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/stop.md -------------------------------------------------------------------------------- /api/methods/trigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/methods/trigger.md -------------------------------------------------------------------------------- /api/options/autoplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/autoplay.md -------------------------------------------------------------------------------- /api/options/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/container.md -------------------------------------------------------------------------------- /api/options/containerselector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/containerselector.md -------------------------------------------------------------------------------- /api/options/onpause.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/onpause.md -------------------------------------------------------------------------------- /api/options/onplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/onplay.md -------------------------------------------------------------------------------- /api/options/onready.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/onready.md -------------------------------------------------------------------------------- /api/options/onrestart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/onrestart.md -------------------------------------------------------------------------------- /api/options/onstop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/onstop.md -------------------------------------------------------------------------------- /api/options/rotationspeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/rotationspeed.md -------------------------------------------------------------------------------- /api/options/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/slides.md -------------------------------------------------------------------------------- /api/options/slidesselector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/slidesselector.md -------------------------------------------------------------------------------- /api/options/transition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/transition.md -------------------------------------------------------------------------------- /api/options/transition.name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/transition.name.md -------------------------------------------------------------------------------- /api/options/transition.oncomplete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/transition.oncomplete.md -------------------------------------------------------------------------------- /api/options/transition.onstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/options/transition.onstart.md -------------------------------------------------------------------------------- /api/props/currentslide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/currentslide.md -------------------------------------------------------------------------------- /api/props/disabled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/disabled.md -------------------------------------------------------------------------------- /api/props/intervalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/intervalid.md -------------------------------------------------------------------------------- /api/props/isanimating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/isanimating.md -------------------------------------------------------------------------------- /api/props/iteration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/iteration.md -------------------------------------------------------------------------------- /api/props/lastslide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/lastslide.md -------------------------------------------------------------------------------- /api/props/nextslide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/nextslide.md -------------------------------------------------------------------------------- /api/props/numslides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/numslides.md -------------------------------------------------------------------------------- /api/props/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/options.md -------------------------------------------------------------------------------- /api/props/previousslide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/previousslide.md -------------------------------------------------------------------------------- /api/props/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/slides.md -------------------------------------------------------------------------------- /api/props/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/api/props/status.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/bower.json -------------------------------------------------------------------------------- /dist/revolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/dist/revolver.js -------------------------------------------------------------------------------- /dist/revolver.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/dist/revolver.js.map -------------------------------------------------------------------------------- /dist/revolver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/dist/revolver.min.js -------------------------------------------------------------------------------- /dist/revolver.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/dist/revolver.min.js.map -------------------------------------------------------------------------------- /git-hooks/pre-commit: -------------------------------------------------------------------------------- 1 | ./node_modules/.bin/grunt build 2 | npm test 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/package.json -------------------------------------------------------------------------------- /src/revolver.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/src/revolver.coffee -------------------------------------------------------------------------------- /src/tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/src/tests.coffee -------------------------------------------------------------------------------- /test/revolver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/test/revolver.html -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnyfreeman/revolver/HEAD/test/tests.js --------------------------------------------------------------------------------