├── .bowerrc ├── .editorconfig ├── .gitignore ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── bower.json ├── demo ├── app │ ├── bootstrap.js │ ├── controllers.js │ ├── home │ │ ├── HomeCtrl.js │ │ └── home.html │ ├── routing.js │ └── test │ │ ├── TestCtrl.js │ │ └── test.html └── index.html ├── dist ├── css │ ├── angular-debug-bar.css │ └── angular-debug-bar.min.css ├── font │ ├── debugbar.eot │ ├── debugbar.svg │ ├── debugbar.ttf │ └── debugbar.woff └── js │ ├── angular-debug-bar.js │ └── angular-debug-bar.min.js ├── gulpfile.js ├── package.json └── src ├── font ├── debugbar.eot ├── debugbar.svg ├── debugbar.ttf └── debugbar.woff ├── js └── angular-debug-bar.js └── scss ├── _icons.scss ├── _material_design_colors.scss └── angular-debug-bar.scss /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "demo/bower_components" 3 | } -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | demo/bower_components 4 | *.iml 5 | .idea 6 | -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/bower.json -------------------------------------------------------------------------------- /demo/app/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/demo/app/bootstrap.js -------------------------------------------------------------------------------- /demo/app/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/demo/app/controllers.js -------------------------------------------------------------------------------- /demo/app/home/HomeCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/demo/app/home/HomeCtrl.js -------------------------------------------------------------------------------- /demo/app/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/demo/app/home/home.html -------------------------------------------------------------------------------- /demo/app/routing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/demo/app/routing.js -------------------------------------------------------------------------------- /demo/app/test/TestCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/demo/app/test/TestCtrl.js -------------------------------------------------------------------------------- /demo/app/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/demo/app/test/test.html -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/demo/index.html -------------------------------------------------------------------------------- /dist/css/angular-debug-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/dist/css/angular-debug-bar.css -------------------------------------------------------------------------------- /dist/css/angular-debug-bar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/dist/css/angular-debug-bar.min.css -------------------------------------------------------------------------------- /dist/font/debugbar.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/dist/font/debugbar.eot -------------------------------------------------------------------------------- /dist/font/debugbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/dist/font/debugbar.svg -------------------------------------------------------------------------------- /dist/font/debugbar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/dist/font/debugbar.ttf -------------------------------------------------------------------------------- /dist/font/debugbar.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/dist/font/debugbar.woff -------------------------------------------------------------------------------- /dist/js/angular-debug-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/dist/js/angular-debug-bar.js -------------------------------------------------------------------------------- /dist/js/angular-debug-bar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/dist/js/angular-debug-bar.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/package.json -------------------------------------------------------------------------------- /src/font/debugbar.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/src/font/debugbar.eot -------------------------------------------------------------------------------- /src/font/debugbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/src/font/debugbar.svg -------------------------------------------------------------------------------- /src/font/debugbar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/src/font/debugbar.ttf -------------------------------------------------------------------------------- /src/font/debugbar.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/src/font/debugbar.woff -------------------------------------------------------------------------------- /src/js/angular-debug-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/src/js/angular-debug-bar.js -------------------------------------------------------------------------------- /src/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/src/scss/_icons.scss -------------------------------------------------------------------------------- /src/scss/_material_design_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/src/scss/_material_design_colors.scss -------------------------------------------------------------------------------- /src/scss/angular-debug-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzepinski/angular-debug-bar/HEAD/src/scss/angular-debug-bar.scss --------------------------------------------------------------------------------