├── .jshintrc ├── LICENSE ├── README.md ├── css └── docs-panel.less ├── html ├── docs-panel-header.html └── docs-panel.html ├── main.js ├── modules └── snippets.js ├── nls ├── root │ └── strings.js └── strings.js ├── package.json └── strings.js /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/README.md -------------------------------------------------------------------------------- /css/docs-panel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/css/docs-panel.less -------------------------------------------------------------------------------- /html/docs-panel-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/html/docs-panel-header.html -------------------------------------------------------------------------------- /html/docs-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/html/docs-panel.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/main.js -------------------------------------------------------------------------------- /modules/snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/modules/snippets.js -------------------------------------------------------------------------------- /nls/root/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/nls/root/strings.js -------------------------------------------------------------------------------- /nls/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/nls/strings.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/package.json -------------------------------------------------------------------------------- /strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georapbox/brackets-angular-snippets/HEAD/strings.js --------------------------------------------------------------------------------