├── .gitignore ├── Gruntfile.js ├── README.md ├── bower.json ├── demo ├── declarative.html ├── line-styles.html ├── programmatically.html └── themes.html ├── dist ├── show-your-terms.js ├── show-your-terms.min.css └── show-your-terms.min.js ├── package.json ├── server.js └── src ├── show-your-terms.coffee └── show-your-terms.sass /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | _site 3 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/bower.json -------------------------------------------------------------------------------- /demo/declarative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/demo/declarative.html -------------------------------------------------------------------------------- /demo/line-styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/demo/line-styles.html -------------------------------------------------------------------------------- /demo/programmatically.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/demo/programmatically.html -------------------------------------------------------------------------------- /demo/themes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/demo/themes.html -------------------------------------------------------------------------------- /dist/show-your-terms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/dist/show-your-terms.js -------------------------------------------------------------------------------- /dist/show-your-terms.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/dist/show-your-terms.min.css -------------------------------------------------------------------------------- /dist/show-your-terms.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/dist/show-your-terms.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/server.js -------------------------------------------------------------------------------- /src/show-your-terms.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/src/show-your-terms.coffee -------------------------------------------------------------------------------- /src/show-your-terms.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandebonfim/show-your-terms/HEAD/src/show-your-terms.sass --------------------------------------------------------------------------------