├── .gitignore ├── Gruntfile.coffee ├── README.md ├── bower.json ├── demo ├── css │ └── demo.css ├── index.html └── tendina.gif ├── dist ├── tendina.js └── tendina.min.js ├── package.json ├── src └── tendina.coffee └── tendina.jquery.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iprignano/tendina/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iprignano/tendina/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iprignano/tendina/HEAD/bower.json -------------------------------------------------------------------------------- /demo/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iprignano/tendina/HEAD/demo/css/demo.css -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iprignano/tendina/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/tendina.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iprignano/tendina/HEAD/demo/tendina.gif -------------------------------------------------------------------------------- /dist/tendina.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iprignano/tendina/HEAD/dist/tendina.js -------------------------------------------------------------------------------- /dist/tendina.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iprignano/tendina/HEAD/dist/tendina.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iprignano/tendina/HEAD/package.json -------------------------------------------------------------------------------- /src/tendina.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iprignano/tendina/HEAD/src/tendina.coffee -------------------------------------------------------------------------------- /tendina.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iprignano/tendina/HEAD/tendina.jquery.json --------------------------------------------------------------------------------