├── .gitignore ├── .npmignore ├── CONTRIBUTING.md ├── Makefile ├── README.md ├── bower.json ├── dist ├── sticky-kit.js └── sticky-kit.min.js ├── package.json ├── site ├── .gitignore ├── example.coffee ├── example.scss ├── examples │ ├── 1.html │ ├── 2.html │ ├── 3.html │ └── 4.html ├── index.html ├── main.coffee ├── main.scss ├── site.moon ├── templates │ ├── example.html │ └── index.html └── www │ ├── .gitignore │ ├── images │ └── sticky_water.png │ └── src │ ├── sticky-kit.js │ └── sticky-kit.min.js ├── spec ├── README.md ├── Tupfile ├── index.coffee └── index.html ├── sticky-kit.coffee ├── sticky-kit.jquery.json └── test ├── README.md ├── index.html ├── style.css ├── tile.png └── two.html /.gitignore: -------------------------------------------------------------------------------- 1 | .tup 2 | node_modules 3 | spec/*.js 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /site 2 | Tupfile 3 | /.tup 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/bower.json -------------------------------------------------------------------------------- /dist/sticky-kit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/dist/sticky-kit.js -------------------------------------------------------------------------------- /dist/sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/dist/sticky-kit.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/package.json -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/.gitignore -------------------------------------------------------------------------------- /site/example.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/example.coffee -------------------------------------------------------------------------------- /site/example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/example.scss -------------------------------------------------------------------------------- /site/examples/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/examples/1.html -------------------------------------------------------------------------------- /site/examples/2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/examples/2.html -------------------------------------------------------------------------------- /site/examples/3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/examples/3.html -------------------------------------------------------------------------------- /site/examples/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/examples/4.html -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/index.html -------------------------------------------------------------------------------- /site/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/main.coffee -------------------------------------------------------------------------------- /site/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/main.scss -------------------------------------------------------------------------------- /site/site.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/site.moon -------------------------------------------------------------------------------- /site/templates/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/templates/example.html -------------------------------------------------------------------------------- /site/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/templates/index.html -------------------------------------------------------------------------------- /site/www/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/www/.gitignore -------------------------------------------------------------------------------- /site/www/images/sticky_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/www/images/sticky_water.png -------------------------------------------------------------------------------- /site/www/src/sticky-kit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/www/src/sticky-kit.js -------------------------------------------------------------------------------- /site/www/src/sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/site/www/src/sticky-kit.min.js -------------------------------------------------------------------------------- /spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/spec/README.md -------------------------------------------------------------------------------- /spec/Tupfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/spec/Tupfile -------------------------------------------------------------------------------- /spec/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/spec/index.coffee -------------------------------------------------------------------------------- /spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/spec/index.html -------------------------------------------------------------------------------- /sticky-kit.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/sticky-kit.coffee -------------------------------------------------------------------------------- /sticky-kit.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/sticky-kit.jquery.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/test/README.md -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/test/index.html -------------------------------------------------------------------------------- /test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/test/style.css -------------------------------------------------------------------------------- /test/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/test/tile.png -------------------------------------------------------------------------------- /test/two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/sticky-kit/HEAD/test/two.html --------------------------------------------------------------------------------