├── .eslintrc.js ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .nvmrc ├── .tm_properties ├── README.md ├── assets ├── _redirects ├── favicon.ico └── img │ └── flickity-illustration.png ├── bower.json ├── content ├── 404.hbs ├── api.hbs ├── events.hbs ├── extras.hbs ├── index.hbs ├── license.hbs ├── options.hbs └── style.hbs ├── css ├── base.css ├── syntax-highlight.css └── web-fonts.css ├── data ├── fullscreen_images.json ├── in_use.json └── licenses.json ├── gulpfile.js ├── js ├── .eslintrc.js ├── boilerplate.js └── init.js ├── modules ├── .eslintrc.js ├── big-links │ ├── big-link.css │ └── big-links.hbs ├── call-out │ ├── call-out.css │ └── fullscreen-call-out.hbs ├── carousel │ └── carousel.css ├── demos │ ├── append │ │ ├── append.hbs │ │ └── append.js │ ├── arrow-wiz │ │ ├── arrow-wiz.css │ │ ├── arrow-wiz.hbs │ │ └── arrow-wiz.js │ ├── as-nav-for │ │ ├── as-nav-for.css │ │ └── as-nav-for.hbs │ ├── auto-play │ │ └── auto-play.hbs │ ├── cell-align │ │ └── cell-align.hbs │ ├── cell-selector │ │ ├── cell-selector.css │ │ └── cell-selector.hbs │ ├── contain │ │ └── contain.hbs │ ├── custom-nav │ │ ├── custom-nav.hbs │ │ └── custom-nav.js │ ├── destroy │ │ ├── destroy.hbs │ │ └── destroy.js │ ├── events-table │ │ ├── events-table.css │ │ ├── events-table.hbs │ │ └── events-table.js │ ├── free-scroll │ │ └── free-scroll.hbs │ ├── fullscreen │ │ ├── fullscreen.css │ │ ├── view-fullscreen-demo.hbs │ │ └── view-fullscreen-demo.js │ ├── imagesloaded │ │ └── imagesloaded.hbs │ ├── insert │ │ └── insert.js │ ├── keyhole │ │ ├── keyhole-content.hbs │ │ ├── keyhole.css │ │ ├── keyhole.hbs │ │ └── keyhole.js │ ├── lazy-load │ │ ├── lazy-cell-images.hbs │ │ ├── lazy-load.css │ │ └── lazy-srcset-images.hbs │ ├── line-dots │ │ ├── line-dots.css │ │ └── line-dots.hbs │ ├── next │ │ ├── next.hbs │ │ └── next.js │ ├── o-dots │ │ ├── o-dots.css │ │ └── o-dots.hbs │ ├── parallax │ │ ├── parallax.css │ │ ├── parallax.hbs │ │ └── parallax.js │ ├── player │ │ ├── player.hbs │ │ └── player.js │ ├── prepend │ │ ├── prepend.hbs │ │ └── prepend.js │ ├── prev-next-big-arrow │ │ ├── prev-next-big-arrow.css │ │ └── prev-next-big-arrow.hbs │ ├── prev-next-small-outside │ │ ├── prev-next-small-outside.css │ │ └── prev-next-small-outside.hbs │ ├── previous │ │ ├── previous.hbs │ │ └── previous.js │ ├── progress-bar │ │ ├── progress-bar.css │ │ ├── progress-bar.hbs │ │ └── progress-bar.js │ ├── remove │ │ ├── remove.hbs │ │ └── remove.js │ ├── reposition │ │ ├── reposition.css │ │ ├── reposition.hbs │ │ └── reposition.js │ ├── resize-show │ │ ├── resize-show.hbs │ │ └── resize-show.js │ ├── resize │ │ ├── resize.css │ │ ├── resize.hbs │ │ └── resize.js │ ├── select-cell-selector │ │ ├── select-cell-selector.hbs │ │ └── select-cell-selector.js │ ├── select-cell │ │ ├── select-cell.hbs │ │ └── select-cell.js │ ├── select-instant │ │ ├── select-instant.hbs │ │ └── select-instant.js │ ├── select │ │ ├── select.hbs │ │ └── select.js │ ├── static-click │ │ ├── static-click.css │ │ ├── static-click.hbs │ │ └── static-click.js │ ├── watch-css │ │ ├── watch-css.css │ │ └── watch-css.hbs │ └── wrap-around │ │ └── wrap-around.hbs ├── example │ └── example.css ├── fizzy-docs-modules-overwrites │ ├── button.css │ ├── buy-button.css │ ├── chunky-button.css │ └── site-footer.css ├── hero-carousel │ ├── hero-carousel.css │ ├── hero-carousel.hbs │ └── hero-carousel.js ├── in-use-carousel │ ├── in-use-carousel.css │ └── in-use-carousel.hbs ├── page-nav │ ├── page-nav.css │ ├── page-nav.js │ └── stickeroo.js └── site-nav │ ├── site-nav.css │ └── site-nav.hbs ├── package.json ├── tasks ├── assets.js ├── content.js ├── css.js ├── dist.js ├── js.js └── utils │ ├── get-glob-paths.js │ ├── highlight-code-block.js │ └── page-nav.js └── templates └── page.hbs /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | build 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/.jshintrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /.tm_properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/.tm_properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/README.md -------------------------------------------------------------------------------- /assets/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/assets/_redirects -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/img/flickity-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/assets/img/flickity-illustration.png -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/bower.json -------------------------------------------------------------------------------- /content/404.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/content/404.hbs -------------------------------------------------------------------------------- /content/api.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/content/api.hbs -------------------------------------------------------------------------------- /content/events.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/content/events.hbs -------------------------------------------------------------------------------- /content/extras.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/content/extras.hbs -------------------------------------------------------------------------------- /content/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/content/index.hbs -------------------------------------------------------------------------------- /content/license.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/content/license.hbs -------------------------------------------------------------------------------- /content/options.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/content/options.hbs -------------------------------------------------------------------------------- /content/style.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/content/style.hbs -------------------------------------------------------------------------------- /css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/css/base.css -------------------------------------------------------------------------------- /css/syntax-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/css/syntax-highlight.css -------------------------------------------------------------------------------- /css/web-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/css/web-fonts.css -------------------------------------------------------------------------------- /data/fullscreen_images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/data/fullscreen_images.json -------------------------------------------------------------------------------- /data/in_use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/data/in_use.json -------------------------------------------------------------------------------- /data/licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/data/licenses.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/gulpfile.js -------------------------------------------------------------------------------- /js/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/js/.eslintrc.js -------------------------------------------------------------------------------- /js/boilerplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/js/boilerplate.js -------------------------------------------------------------------------------- /js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/js/init.js -------------------------------------------------------------------------------- /modules/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/.eslintrc.js -------------------------------------------------------------------------------- /modules/big-links/big-link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/big-links/big-link.css -------------------------------------------------------------------------------- /modules/big-links/big-links.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/big-links/big-links.hbs -------------------------------------------------------------------------------- /modules/call-out/call-out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/call-out/call-out.css -------------------------------------------------------------------------------- /modules/call-out/fullscreen-call-out.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/call-out/fullscreen-call-out.hbs -------------------------------------------------------------------------------- /modules/carousel/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/carousel/carousel.css -------------------------------------------------------------------------------- /modules/demos/append/append.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/append/append.hbs -------------------------------------------------------------------------------- /modules/demos/append/append.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/append/append.js -------------------------------------------------------------------------------- /modules/demos/arrow-wiz/arrow-wiz.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/arrow-wiz/arrow-wiz.css -------------------------------------------------------------------------------- /modules/demos/arrow-wiz/arrow-wiz.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/arrow-wiz/arrow-wiz.hbs -------------------------------------------------------------------------------- /modules/demos/arrow-wiz/arrow-wiz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/arrow-wiz/arrow-wiz.js -------------------------------------------------------------------------------- /modules/demos/as-nav-for/as-nav-for.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/as-nav-for/as-nav-for.css -------------------------------------------------------------------------------- /modules/demos/as-nav-for/as-nav-for.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/as-nav-for/as-nav-for.hbs -------------------------------------------------------------------------------- /modules/demos/auto-play/auto-play.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/auto-play/auto-play.hbs -------------------------------------------------------------------------------- /modules/demos/cell-align/cell-align.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/cell-align/cell-align.hbs -------------------------------------------------------------------------------- /modules/demos/cell-selector/cell-selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/cell-selector/cell-selector.css -------------------------------------------------------------------------------- /modules/demos/cell-selector/cell-selector.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/cell-selector/cell-selector.hbs -------------------------------------------------------------------------------- /modules/demos/contain/contain.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/contain/contain.hbs -------------------------------------------------------------------------------- /modules/demos/custom-nav/custom-nav.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/custom-nav/custom-nav.hbs -------------------------------------------------------------------------------- /modules/demos/custom-nav/custom-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/custom-nav/custom-nav.js -------------------------------------------------------------------------------- /modules/demos/destroy/destroy.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/destroy/destroy.hbs -------------------------------------------------------------------------------- /modules/demos/destroy/destroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/destroy/destroy.js -------------------------------------------------------------------------------- /modules/demos/events-table/events-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/events-table/events-table.css -------------------------------------------------------------------------------- /modules/demos/events-table/events-table.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/events-table/events-table.hbs -------------------------------------------------------------------------------- /modules/demos/events-table/events-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/events-table/events-table.js -------------------------------------------------------------------------------- /modules/demos/free-scroll/free-scroll.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/free-scroll/free-scroll.hbs -------------------------------------------------------------------------------- /modules/demos/fullscreen/fullscreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/fullscreen/fullscreen.css -------------------------------------------------------------------------------- /modules/demos/fullscreen/view-fullscreen-demo.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/fullscreen/view-fullscreen-demo.hbs -------------------------------------------------------------------------------- /modules/demos/fullscreen/view-fullscreen-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/fullscreen/view-fullscreen-demo.js -------------------------------------------------------------------------------- /modules/demos/imagesloaded/imagesloaded.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/imagesloaded/imagesloaded.hbs -------------------------------------------------------------------------------- /modules/demos/insert/insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/insert/insert.js -------------------------------------------------------------------------------- /modules/demos/keyhole/keyhole-content.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/keyhole/keyhole-content.hbs -------------------------------------------------------------------------------- /modules/demos/keyhole/keyhole.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/keyhole/keyhole.css -------------------------------------------------------------------------------- /modules/demos/keyhole/keyhole.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/keyhole/keyhole.hbs -------------------------------------------------------------------------------- /modules/demos/keyhole/keyhole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/keyhole/keyhole.js -------------------------------------------------------------------------------- /modules/demos/lazy-load/lazy-cell-images.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/lazy-load/lazy-cell-images.hbs -------------------------------------------------------------------------------- /modules/demos/lazy-load/lazy-load.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/lazy-load/lazy-load.css -------------------------------------------------------------------------------- /modules/demos/lazy-load/lazy-srcset-images.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/lazy-load/lazy-srcset-images.hbs -------------------------------------------------------------------------------- /modules/demos/line-dots/line-dots.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/line-dots/line-dots.css -------------------------------------------------------------------------------- /modules/demos/line-dots/line-dots.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/line-dots/line-dots.hbs -------------------------------------------------------------------------------- /modules/demos/next/next.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/next/next.hbs -------------------------------------------------------------------------------- /modules/demos/next/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/next/next.js -------------------------------------------------------------------------------- /modules/demos/o-dots/o-dots.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/o-dots/o-dots.css -------------------------------------------------------------------------------- /modules/demos/o-dots/o-dots.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/o-dots/o-dots.hbs -------------------------------------------------------------------------------- /modules/demos/parallax/parallax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/parallax/parallax.css -------------------------------------------------------------------------------- /modules/demos/parallax/parallax.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/parallax/parallax.hbs -------------------------------------------------------------------------------- /modules/demos/parallax/parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/parallax/parallax.js -------------------------------------------------------------------------------- /modules/demos/player/player.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/player/player.hbs -------------------------------------------------------------------------------- /modules/demos/player/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/player/player.js -------------------------------------------------------------------------------- /modules/demos/prepend/prepend.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/prepend/prepend.hbs -------------------------------------------------------------------------------- /modules/demos/prepend/prepend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/prepend/prepend.js -------------------------------------------------------------------------------- /modules/demos/prev-next-big-arrow/prev-next-big-arrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/prev-next-big-arrow/prev-next-big-arrow.css -------------------------------------------------------------------------------- /modules/demos/prev-next-big-arrow/prev-next-big-arrow.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/prev-next-big-arrow/prev-next-big-arrow.hbs -------------------------------------------------------------------------------- /modules/demos/prev-next-small-outside/prev-next-small-outside.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/prev-next-small-outside/prev-next-small-outside.css -------------------------------------------------------------------------------- /modules/demos/prev-next-small-outside/prev-next-small-outside.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/prev-next-small-outside/prev-next-small-outside.hbs -------------------------------------------------------------------------------- /modules/demos/previous/previous.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/previous/previous.hbs -------------------------------------------------------------------------------- /modules/demos/previous/previous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/previous/previous.js -------------------------------------------------------------------------------- /modules/demos/progress-bar/progress-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/progress-bar/progress-bar.css -------------------------------------------------------------------------------- /modules/demos/progress-bar/progress-bar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/progress-bar/progress-bar.hbs -------------------------------------------------------------------------------- /modules/demos/progress-bar/progress-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/progress-bar/progress-bar.js -------------------------------------------------------------------------------- /modules/demos/remove/remove.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/remove/remove.hbs -------------------------------------------------------------------------------- /modules/demos/remove/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/remove/remove.js -------------------------------------------------------------------------------- /modules/demos/reposition/reposition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/reposition/reposition.css -------------------------------------------------------------------------------- /modules/demos/reposition/reposition.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/reposition/reposition.hbs -------------------------------------------------------------------------------- /modules/demos/reposition/reposition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/reposition/reposition.js -------------------------------------------------------------------------------- /modules/demos/resize-show/resize-show.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/resize-show/resize-show.hbs -------------------------------------------------------------------------------- /modules/demos/resize-show/resize-show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/resize-show/resize-show.js -------------------------------------------------------------------------------- /modules/demos/resize/resize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/resize/resize.css -------------------------------------------------------------------------------- /modules/demos/resize/resize.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/resize/resize.hbs -------------------------------------------------------------------------------- /modules/demos/resize/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/resize/resize.js -------------------------------------------------------------------------------- /modules/demos/select-cell-selector/select-cell-selector.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/select-cell-selector/select-cell-selector.hbs -------------------------------------------------------------------------------- /modules/demos/select-cell-selector/select-cell-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/select-cell-selector/select-cell-selector.js -------------------------------------------------------------------------------- /modules/demos/select-cell/select-cell.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/select-cell/select-cell.hbs -------------------------------------------------------------------------------- /modules/demos/select-cell/select-cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/select-cell/select-cell.js -------------------------------------------------------------------------------- /modules/demos/select-instant/select-instant.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/select-instant/select-instant.hbs -------------------------------------------------------------------------------- /modules/demos/select-instant/select-instant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/select-instant/select-instant.js -------------------------------------------------------------------------------- /modules/demos/select/select.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/select/select.hbs -------------------------------------------------------------------------------- /modules/demos/select/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/select/select.js -------------------------------------------------------------------------------- /modules/demos/static-click/static-click.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/static-click/static-click.css -------------------------------------------------------------------------------- /modules/demos/static-click/static-click.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/static-click/static-click.hbs -------------------------------------------------------------------------------- /modules/demos/static-click/static-click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/static-click/static-click.js -------------------------------------------------------------------------------- /modules/demos/watch-css/watch-css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/watch-css/watch-css.css -------------------------------------------------------------------------------- /modules/demos/watch-css/watch-css.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/watch-css/watch-css.hbs -------------------------------------------------------------------------------- /modules/demos/wrap-around/wrap-around.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/demos/wrap-around/wrap-around.hbs -------------------------------------------------------------------------------- /modules/example/example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/example/example.css -------------------------------------------------------------------------------- /modules/fizzy-docs-modules-overwrites/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/fizzy-docs-modules-overwrites/button.css -------------------------------------------------------------------------------- /modules/fizzy-docs-modules-overwrites/buy-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/fizzy-docs-modules-overwrites/buy-button.css -------------------------------------------------------------------------------- /modules/fizzy-docs-modules-overwrites/chunky-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/fizzy-docs-modules-overwrites/chunky-button.css -------------------------------------------------------------------------------- /modules/fizzy-docs-modules-overwrites/site-footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/fizzy-docs-modules-overwrites/site-footer.css -------------------------------------------------------------------------------- /modules/hero-carousel/hero-carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/hero-carousel/hero-carousel.css -------------------------------------------------------------------------------- /modules/hero-carousel/hero-carousel.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/hero-carousel/hero-carousel.hbs -------------------------------------------------------------------------------- /modules/hero-carousel/hero-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/hero-carousel/hero-carousel.js -------------------------------------------------------------------------------- /modules/in-use-carousel/in-use-carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/in-use-carousel/in-use-carousel.css -------------------------------------------------------------------------------- /modules/in-use-carousel/in-use-carousel.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/in-use-carousel/in-use-carousel.hbs -------------------------------------------------------------------------------- /modules/page-nav/page-nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/page-nav/page-nav.css -------------------------------------------------------------------------------- /modules/page-nav/page-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/page-nav/page-nav.js -------------------------------------------------------------------------------- /modules/page-nav/stickeroo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/page-nav/stickeroo.js -------------------------------------------------------------------------------- /modules/site-nav/site-nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/site-nav/site-nav.css -------------------------------------------------------------------------------- /modules/site-nav/site-nav.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/modules/site-nav/site-nav.hbs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/package.json -------------------------------------------------------------------------------- /tasks/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/tasks/assets.js -------------------------------------------------------------------------------- /tasks/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/tasks/content.js -------------------------------------------------------------------------------- /tasks/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/tasks/css.js -------------------------------------------------------------------------------- /tasks/dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/tasks/dist.js -------------------------------------------------------------------------------- /tasks/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/tasks/js.js -------------------------------------------------------------------------------- /tasks/utils/get-glob-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/tasks/utils/get-glob-paths.js -------------------------------------------------------------------------------- /tasks/utils/highlight-code-block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/tasks/utils/highlight-code-block.js -------------------------------------------------------------------------------- /tasks/utils/page-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/tasks/utils/page-nav.js -------------------------------------------------------------------------------- /templates/page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metafizzy/flickity-docs/HEAD/templates/page.hbs --------------------------------------------------------------------------------