├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.md ├── bower.json ├── jquery.serialScroll.js ├── jquery.serialScroll.min.js ├── package.json └── snippets ├── SerialScroll_constant-scrolling.js ├── SerialScroll_hide-arrows.js ├── SerialScroll_paginator.js ├── SerialScroll_right-to-left.js ├── SerialScroll_stop-on-hover.js └── SerialScroll_use-the-arrows.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/bower.json -------------------------------------------------------------------------------- /jquery.serialScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/jquery.serialScroll.js -------------------------------------------------------------------------------- /jquery.serialScroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/jquery.serialScroll.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/package.json -------------------------------------------------------------------------------- /snippets/SerialScroll_constant-scrolling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/snippets/SerialScroll_constant-scrolling.js -------------------------------------------------------------------------------- /snippets/SerialScroll_hide-arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/snippets/SerialScroll_hide-arrows.js -------------------------------------------------------------------------------- /snippets/SerialScroll_paginator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/snippets/SerialScroll_paginator.js -------------------------------------------------------------------------------- /snippets/SerialScroll_right-to-left.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/snippets/SerialScroll_right-to-left.js -------------------------------------------------------------------------------- /snippets/SerialScroll_stop-on-hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/snippets/SerialScroll_stop-on-hover.js -------------------------------------------------------------------------------- /snippets/SerialScroll_use-the-arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flesler/jquery.serialScroll/HEAD/snippets/SerialScroll_use-the-arrows.js --------------------------------------------------------------------------------