├── .gitignore ├── LICENSE ├── README.md ├── README_OLD.md ├── examples └── index.html └── static ├── config.rb ├── js ├── jquery.min.js └── jquery.toggle.buttons.js ├── sass └── bootstrap-toggle-buttons.scss └── stylesheets └── bootstrap-toggle-buttons.css /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .idea 3 | .sass-cache/ 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbootstrap/bootstrap-toggle-buttons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbootstrap/bootstrap-toggle-buttons/HEAD/README.md -------------------------------------------------------------------------------- /README_OLD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbootstrap/bootstrap-toggle-buttons/HEAD/README_OLD.md -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbootstrap/bootstrap-toggle-buttons/HEAD/examples/index.html -------------------------------------------------------------------------------- /static/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbootstrap/bootstrap-toggle-buttons/HEAD/static/config.rb -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbootstrap/bootstrap-toggle-buttons/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/jquery.toggle.buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbootstrap/bootstrap-toggle-buttons/HEAD/static/js/jquery.toggle.buttons.js -------------------------------------------------------------------------------- /static/sass/bootstrap-toggle-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbootstrap/bootstrap-toggle-buttons/HEAD/static/sass/bootstrap-toggle-buttons.scss -------------------------------------------------------------------------------- /static/stylesheets/bootstrap-toggle-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbootstrap/bootstrap-toggle-buttons/HEAD/static/stylesheets/bootstrap-toggle-buttons.css --------------------------------------------------------------------------------