├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── crossbow.yaml ├── example.server.js ├── example.stream.js ├── gulpfile.js ├── index.js ├── lib ├── UI.js ├── async-tasks.js ├── async.js ├── client-elements.js ├── client-js.js ├── config.js ├── directive-stripper.js ├── hooks.js ├── opts.js ├── plugins │ ├── connections │ │ ├── connections.client.js │ │ ├── connections.directive.html │ │ ├── connections.html │ │ ├── connections.plugin.js │ │ └── lib │ │ │ └── connections.js │ ├── help │ │ ├── help.client.js │ │ ├── help.directive.html │ │ ├── help.html │ │ └── help.plugin.js │ ├── history │ │ ├── history.client.js │ │ ├── history.directive.html │ │ ├── history.html │ │ ├── history.js │ │ └── history.plugin.js │ ├── network-throttle │ │ ├── network-throttle.client.js │ │ ├── network-throttle.directive.html │ │ ├── network-throttle.html │ │ ├── network-throttle.js │ │ ├── network-throttle.plugin.js │ │ ├── targets.js │ │ └── throttle-server.js │ ├── overview │ │ ├── overview.client.js │ │ ├── overview.html │ │ ├── overview.plugin.js │ │ ├── snippet-info.html │ │ └── url-info.html │ ├── plugins │ │ ├── plugins.client.js │ │ ├── plugins.html │ │ └── plugins.plugin.js │ ├── remote-debug │ │ ├── client-files.js │ │ ├── compression.html │ │ ├── compression.js │ │ ├── css │ │ │ ├── pesticide-depth.css │ │ │ ├── pesticide.css │ │ │ └── pesticide.min.css │ │ ├── latency │ │ │ ├── latency.client.js │ │ │ ├── latency.html │ │ │ └── latency.js │ │ ├── no-cache.html │ │ ├── no-cache.js │ │ ├── overlay-grid │ │ │ ├── css │ │ │ │ ├── grid-overlay-horizontal.css │ │ │ │ └── grid-overlay-vertical.css │ │ │ ├── js │ │ │ │ └── grid-overlay.js │ │ │ ├── overlay-grid.client.js │ │ │ ├── overlay-grid.html │ │ │ └── overlay-grid.js │ │ ├── remote-debug.client.js │ │ ├── remote-debug.html │ │ └── remote-debug.plugin.js │ └── sync-options │ │ ├── sync-options.client.js │ │ ├── sync-options.html │ │ └── sync-options.plugin.js ├── resolve-plugins.js ├── server.js ├── transform.options.js ├── transforms.js ├── urls.js └── utils.js ├── package.json ├── public ├── css │ ├── components.css │ ├── core.css │ ├── core.css.map │ ├── core.min.css │ └── core.min.css.map ├── favicon.ico ├── fonts │ └── source-sans │ │ ├── sourcesanspro-bold-webfont.eot │ │ ├── sourcesanspro-bold-webfont.svg │ │ ├── sourcesanspro-bold-webfont.ttf │ │ ├── sourcesanspro-bold-webfont.woff │ │ ├── sourcesanspro-bold-webfont.woff2 │ │ ├── sourcesanspro-it-webfont.eot │ │ ├── sourcesanspro-it-webfont.svg │ │ ├── sourcesanspro-it-webfont.ttf │ │ ├── sourcesanspro-it-webfont.woff │ │ ├── sourcesanspro-it-webfont.woff2 │ │ ├── sourcesanspro-regular-webfont.eot │ │ ├── sourcesanspro-regular-webfont.svg │ │ ├── sourcesanspro-regular-webfont.ttf │ │ ├── sourcesanspro-regular-webfont.woff │ │ └── sourcesanspro-regular-webfont.woff2 ├── img │ ├── favicon.ico │ ├── icons │ │ ├── icons.svg │ │ └── preview.html │ ├── logo.svg │ └── ps-bg.gif ├── index.html └── js │ ├── app.js │ └── app.js.map ├── src ├── crossbow │ ├── _config.yml │ ├── _includes │ │ ├── enable.disable.hbs │ │ ├── form.input.checkbox.hbs │ │ ├── form.input.text.hbs │ │ ├── header.hbs │ │ ├── icon.hbs │ │ └── nav.hbs │ ├── _layouts │ │ ├── components.hbs │ │ ├── main.hbs │ │ └── parent.hbs │ ├── components.hbs │ ├── components │ │ ├── button-bars.hbs │ │ ├── buttons.hbs │ │ ├── footer.hbs │ │ ├── forms.hbs │ │ ├── header.hbs │ │ ├── heading.hbs │ │ ├── help-content.hbs │ │ ├── lists.hbs │ │ ├── panels.hbs │ │ ├── switches.hbs │ │ └── type.hbs │ ├── content │ │ └── help.content.hbs │ ├── help.hbs │ ├── history.hbs │ ├── network-throttle.hbs │ ├── plugins.hbs │ ├── remote-debug.hbs │ ├── server-info-snippet.hbs │ ├── server-info.hbs │ └── sync-options.hbs ├── scripts │ ├── angular.js │ ├── app.js │ ├── directives.js │ ├── directives │ │ ├── icon.js │ │ ├── link-to.js │ │ ├── new-tab.js │ │ └── switch.js │ ├── editor.js │ ├── filters.js │ ├── main │ │ └── controller.js │ ├── module.js │ ├── modules │ │ ├── bsClients.js │ │ ├── bsDisconnect.js │ │ ├── bsHistory.js │ │ ├── bsNotify.js │ │ ├── bsSocket.js │ │ └── bsStore.js │ ├── services │ │ ├── Options.js │ │ └── Pages.js │ └── utils.js ├── scss │ ├── _vars.scss │ ├── components.scss │ ├── core.scss │ ├── modules │ │ ├── _mixins.scss │ │ └── _reset.scss │ ├── theme │ │ ├── _animations.scss │ │ ├── _base.scss │ │ ├── _buttons.scss │ │ ├── _cloak.scss │ │ ├── _code.scss │ │ ├── _custom-icons.scss │ │ ├── _disconnect.scss │ │ ├── _footer.scss │ │ ├── _forms.scss │ │ ├── _grid.scss │ │ ├── _header.scss │ │ ├── _headings.scss │ │ ├── _helpers.scss │ │ ├── _links.scss │ │ ├── _lists.scss │ │ ├── _main-content.scss │ │ ├── _misc.scss │ │ ├── _msgs.scss │ │ ├── _notifications.scss │ │ ├── _panel.scss │ │ ├── _paragraphs.scss │ │ ├── _section-nav.scss │ │ ├── _sidebar.scss │ │ ├── _spinner.scss │ │ ├── _state.scss │ │ ├── _svg.scss │ │ ├── _switch.scss │ │ └── _top-bar.scss │ └── vendor │ │ ├── _fonts.scss │ │ └── _normalize.scss ├── svg-template.tmpl └── svg │ ├── bin.svg │ ├── block.svg │ ├── book.svg │ ├── bug.svg │ ├── circle-delete.svg │ ├── circle-minus.svg │ ├── circle-ok.svg │ ├── circle-pause.svg │ ├── circle-play.svg │ ├── circle-plus.svg │ ├── code.svg │ ├── cog.svg │ ├── devices.svg │ ├── github.svg │ ├── globe.svg │ ├── help.svg │ ├── home.svg │ ├── imac.svg │ ├── jh.svg │ ├── list.svg │ ├── list2.svg │ ├── logo-word.svg │ ├── logo.svg │ ├── newtab.svg │ ├── pen.svg │ ├── pencil.svg │ ├── plug.svg │ ├── repeat.svg │ ├── square-add.svg │ ├── square-up.svg │ ├── sync-browser.svg │ ├── sync.svg │ ├── syncall.svg │ ├── target.svg │ ├── terminal.svg │ ├── time.svg │ ├── trash.svg │ ├── twitter.svg │ └── wifi.svg ├── static ├── components │ ├── button-bars.html │ ├── buttons.html │ ├── footer.html │ ├── forms.html │ ├── header.html │ ├── heading.html │ ├── help-content.html │ ├── lists.html │ ├── panels.html │ ├── switches.html │ └── type.html └── content │ └── help.content.html ├── tasks ├── crossbow.js └── icons.js ├── templates ├── config.item.tmpl ├── config.tmpl ├── directives │ └── bs-switch.html ├── inline.template.tmpl ├── plugin.item.tmpl └── plugin.tmpl ├── test ├── .jshintrc ├── client │ └── e2e │ │ ├── bs-init.js │ │ ├── config.js │ │ ├── e2e.plugins.js │ │ ├── e2e.server-info.js │ │ ├── e2e.sync-options.js │ │ ├── test-utils.js │ │ └── tests │ │ ├── history.js │ │ ├── history.newtabs.js │ │ ├── home.js │ │ ├── network-throttle.auto.js │ │ ├── network-throttle.js │ │ ├── network-throttle.manual.js │ │ ├── network-throttle.remove.js │ │ ├── plugins.inline.js │ │ ├── plugins.js │ │ └── remote-debug.js ├── fixtures │ ├── content.html │ ├── css │ │ ├── blog.css │ │ └── bootstrap.css │ ├── forms.html │ ├── index.html │ ├── plugin-multi-templates │ │ ├── index.plugin.js │ │ ├── package.json │ │ └── ui │ │ │ ├── client.js │ │ │ ├── client2.js │ │ │ ├── test.directive.html │ │ │ ├── test.html │ │ │ └── test.list.html │ ├── plugin-noui │ │ ├── index.plugin.js │ │ └── package.json │ ├── plugin │ │ ├── index.plugin.js │ │ ├── package.json │ │ └── ui │ │ │ ├── client.js │ │ │ ├── test.directive.html │ │ │ └── test.html │ └── scrolling.html ├── opts.server.json ├── protractor.sh └── server │ ├── history │ └── history.js │ ├── init.js │ ├── plugins.js │ ├── plugins.templates.js │ └── remote-debug │ ├── client.files.js │ ├── latency.js │ ├── no-cache.js │ ├── throttle.https.js │ └── throttle.js ├── webpack.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/README.md -------------------------------------------------------------------------------- /crossbow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/crossbow.yaml -------------------------------------------------------------------------------- /example.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/example.server.js -------------------------------------------------------------------------------- /example.stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/example.stream.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/index.js -------------------------------------------------------------------------------- /lib/UI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/UI.js -------------------------------------------------------------------------------- /lib/async-tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/async-tasks.js -------------------------------------------------------------------------------- /lib/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/async.js -------------------------------------------------------------------------------- /lib/client-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/client-elements.js -------------------------------------------------------------------------------- /lib/client-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/client-js.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/directive-stripper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/directive-stripper.js -------------------------------------------------------------------------------- /lib/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/hooks.js -------------------------------------------------------------------------------- /lib/opts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/opts.js -------------------------------------------------------------------------------- /lib/plugins/connections/connections.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/connections/connections.client.js -------------------------------------------------------------------------------- /lib/plugins/connections/connections.directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/connections/connections.directive.html -------------------------------------------------------------------------------- /lib/plugins/connections/connections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/connections/connections.html -------------------------------------------------------------------------------- /lib/plugins/connections/connections.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/connections/connections.plugin.js -------------------------------------------------------------------------------- /lib/plugins/connections/lib/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/connections/lib/connections.js -------------------------------------------------------------------------------- /lib/plugins/help/help.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/help/help.client.js -------------------------------------------------------------------------------- /lib/plugins/help/help.directive.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plugins/help/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/help/help.html -------------------------------------------------------------------------------- /lib/plugins/help/help.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/help/help.plugin.js -------------------------------------------------------------------------------- /lib/plugins/history/history.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/history/history.client.js -------------------------------------------------------------------------------- /lib/plugins/history/history.directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/history/history.directive.html -------------------------------------------------------------------------------- /lib/plugins/history/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/history/history.html -------------------------------------------------------------------------------- /lib/plugins/history/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/history/history.js -------------------------------------------------------------------------------- /lib/plugins/history/history.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/history/history.plugin.js -------------------------------------------------------------------------------- /lib/plugins/network-throttle/network-throttle.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/network-throttle/network-throttle.client.js -------------------------------------------------------------------------------- /lib/plugins/network-throttle/network-throttle.directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/network-throttle/network-throttle.directive.html -------------------------------------------------------------------------------- /lib/plugins/network-throttle/network-throttle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/network-throttle/network-throttle.html -------------------------------------------------------------------------------- /lib/plugins/network-throttle/network-throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/network-throttle/network-throttle.js -------------------------------------------------------------------------------- /lib/plugins/network-throttle/network-throttle.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/network-throttle/network-throttle.plugin.js -------------------------------------------------------------------------------- /lib/plugins/network-throttle/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/network-throttle/targets.js -------------------------------------------------------------------------------- /lib/plugins/network-throttle/throttle-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/network-throttle/throttle-server.js -------------------------------------------------------------------------------- /lib/plugins/overview/overview.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/overview/overview.client.js -------------------------------------------------------------------------------- /lib/plugins/overview/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/overview/overview.html -------------------------------------------------------------------------------- /lib/plugins/overview/overview.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/overview/overview.plugin.js -------------------------------------------------------------------------------- /lib/plugins/overview/snippet-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/overview/snippet-info.html -------------------------------------------------------------------------------- /lib/plugins/overview/url-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/overview/url-info.html -------------------------------------------------------------------------------- /lib/plugins/plugins/plugins.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/plugins/plugins.client.js -------------------------------------------------------------------------------- /lib/plugins/plugins/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/plugins/plugins.html -------------------------------------------------------------------------------- /lib/plugins/plugins/plugins.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/plugins/plugins.plugin.js -------------------------------------------------------------------------------- /lib/plugins/remote-debug/client-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/client-files.js -------------------------------------------------------------------------------- /lib/plugins/remote-debug/compression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/compression.html -------------------------------------------------------------------------------- /lib/plugins/remote-debug/compression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/compression.js -------------------------------------------------------------------------------- /lib/plugins/remote-debug/css/pesticide-depth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/css/pesticide-depth.css -------------------------------------------------------------------------------- /lib/plugins/remote-debug/css/pesticide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/css/pesticide.css -------------------------------------------------------------------------------- /lib/plugins/remote-debug/css/pesticide.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/css/pesticide.min.css -------------------------------------------------------------------------------- /lib/plugins/remote-debug/latency/latency.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/latency/latency.client.js -------------------------------------------------------------------------------- /lib/plugins/remote-debug/latency/latency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/latency/latency.html -------------------------------------------------------------------------------- /lib/plugins/remote-debug/latency/latency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/latency/latency.js -------------------------------------------------------------------------------- /lib/plugins/remote-debug/no-cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/no-cache.html -------------------------------------------------------------------------------- /lib/plugins/remote-debug/no-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/no-cache.js -------------------------------------------------------------------------------- /lib/plugins/remote-debug/overlay-grid/css/grid-overlay-horizontal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/overlay-grid/css/grid-overlay-horizontal.css -------------------------------------------------------------------------------- /lib/plugins/remote-debug/overlay-grid/css/grid-overlay-vertical.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/overlay-grid/css/grid-overlay-vertical.css -------------------------------------------------------------------------------- /lib/plugins/remote-debug/overlay-grid/js/grid-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/overlay-grid/js/grid-overlay.js -------------------------------------------------------------------------------- /lib/plugins/remote-debug/overlay-grid/overlay-grid.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/overlay-grid/overlay-grid.client.js -------------------------------------------------------------------------------- /lib/plugins/remote-debug/overlay-grid/overlay-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/overlay-grid/overlay-grid.html -------------------------------------------------------------------------------- /lib/plugins/remote-debug/overlay-grid/overlay-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/overlay-grid/overlay-grid.js -------------------------------------------------------------------------------- /lib/plugins/remote-debug/remote-debug.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/remote-debug.client.js -------------------------------------------------------------------------------- /lib/plugins/remote-debug/remote-debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/remote-debug.html -------------------------------------------------------------------------------- /lib/plugins/remote-debug/remote-debug.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/remote-debug/remote-debug.plugin.js -------------------------------------------------------------------------------- /lib/plugins/sync-options/sync-options.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/sync-options/sync-options.client.js -------------------------------------------------------------------------------- /lib/plugins/sync-options/sync-options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/sync-options/sync-options.html -------------------------------------------------------------------------------- /lib/plugins/sync-options/sync-options.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/plugins/sync-options/sync-options.plugin.js -------------------------------------------------------------------------------- /lib/resolve-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/resolve-plugins.js -------------------------------------------------------------------------------- /lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/server.js -------------------------------------------------------------------------------- /lib/transform.options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/transform.options.js -------------------------------------------------------------------------------- /lib/transforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/transforms.js -------------------------------------------------------------------------------- /lib/urls.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/package.json -------------------------------------------------------------------------------- /public/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/css/components.css -------------------------------------------------------------------------------- /public/css/core.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=core.css.map */ 3 | -------------------------------------------------------------------------------- /public/css/core.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/css/core.css.map -------------------------------------------------------------------------------- /public/css/core.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/css/core.min.css -------------------------------------------------------------------------------- /public/css/core.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/css/core.min.css.map -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-bold-webfont.eot -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-bold-webfont.svg -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-bold-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-bold-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-bold-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-it-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-it-webfont.eot -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-it-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-it-webfont.svg -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-it-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-it-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-it-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-it-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-it-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-it-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-regular-webfont.eot -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-regular-webfont.svg -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-regular-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-regular-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans/sourcesanspro-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/fonts/source-sans/sourcesanspro-regular-webfont.woff2 -------------------------------------------------------------------------------- /public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/img/favicon.ico -------------------------------------------------------------------------------- /public/img/icons/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/img/icons/icons.svg -------------------------------------------------------------------------------- /public/img/icons/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/img/icons/preview.html -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/img/logo.svg -------------------------------------------------------------------------------- /public/img/ps-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/img/ps-bg.gif -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/public/js/app.js.map -------------------------------------------------------------------------------- /src/crossbow/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/_config.yml -------------------------------------------------------------------------------- /src/crossbow/_includes/enable.disable.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/_includes/enable.disable.hbs -------------------------------------------------------------------------------- /src/crossbow/_includes/form.input.checkbox.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/_includes/form.input.checkbox.hbs -------------------------------------------------------------------------------- /src/crossbow/_includes/form.input.text.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/_includes/form.input.text.hbs -------------------------------------------------------------------------------- /src/crossbow/_includes/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/_includes/header.hbs -------------------------------------------------------------------------------- /src/crossbow/_includes/icon.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/_includes/icon.hbs -------------------------------------------------------------------------------- /src/crossbow/_includes/nav.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/_includes/nav.hbs -------------------------------------------------------------------------------- /src/crossbow/_layouts/components.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/_layouts/components.hbs -------------------------------------------------------------------------------- /src/crossbow/_layouts/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/_layouts/main.hbs -------------------------------------------------------------------------------- /src/crossbow/_layouts/parent.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/_layouts/parent.hbs -------------------------------------------------------------------------------- /src/crossbow/components.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components.hbs -------------------------------------------------------------------------------- /src/crossbow/components/button-bars.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components/button-bars.hbs -------------------------------------------------------------------------------- /src/crossbow/components/buttons.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components/buttons.hbs -------------------------------------------------------------------------------- /src/crossbow/components/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components/footer.hbs -------------------------------------------------------------------------------- /src/crossbow/components/forms.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components/forms.hbs -------------------------------------------------------------------------------- /src/crossbow/components/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components/header.hbs -------------------------------------------------------------------------------- /src/crossbow/components/heading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components/heading.hbs -------------------------------------------------------------------------------- /src/crossbow/components/help-content.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components/help-content.hbs -------------------------------------------------------------------------------- /src/crossbow/components/lists.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components/lists.hbs -------------------------------------------------------------------------------- /src/crossbow/components/panels.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components/panels.hbs -------------------------------------------------------------------------------- /src/crossbow/components/switches.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components/switches.hbs -------------------------------------------------------------------------------- /src/crossbow/components/type.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/components/type.hbs -------------------------------------------------------------------------------- /src/crossbow/content/help.content.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/content/help.content.hbs -------------------------------------------------------------------------------- /src/crossbow/help.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/help.hbs -------------------------------------------------------------------------------- /src/crossbow/history.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/history.hbs -------------------------------------------------------------------------------- /src/crossbow/network-throttle.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/network-throttle.hbs -------------------------------------------------------------------------------- /src/crossbow/plugins.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/plugins.hbs -------------------------------------------------------------------------------- /src/crossbow/remote-debug.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/remote-debug.hbs -------------------------------------------------------------------------------- /src/crossbow/server-info-snippet.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/server-info-snippet.hbs -------------------------------------------------------------------------------- /src/crossbow/server-info.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/server-info.hbs -------------------------------------------------------------------------------- /src/crossbow/sync-options.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/crossbow/sync-options.hbs -------------------------------------------------------------------------------- /src/scripts/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/angular.js -------------------------------------------------------------------------------- /src/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/app.js -------------------------------------------------------------------------------- /src/scripts/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/directives.js -------------------------------------------------------------------------------- /src/scripts/directives/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/directives/icon.js -------------------------------------------------------------------------------- /src/scripts/directives/link-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/directives/link-to.js -------------------------------------------------------------------------------- /src/scripts/directives/new-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/directives/new-tab.js -------------------------------------------------------------------------------- /src/scripts/directives/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/directives/switch.js -------------------------------------------------------------------------------- /src/scripts/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/editor.js -------------------------------------------------------------------------------- /src/scripts/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/filters.js -------------------------------------------------------------------------------- /src/scripts/main/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/main/controller.js -------------------------------------------------------------------------------- /src/scripts/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/module.js -------------------------------------------------------------------------------- /src/scripts/modules/bsClients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/modules/bsClients.js -------------------------------------------------------------------------------- /src/scripts/modules/bsDisconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/modules/bsDisconnect.js -------------------------------------------------------------------------------- /src/scripts/modules/bsHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/modules/bsHistory.js -------------------------------------------------------------------------------- /src/scripts/modules/bsNotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/modules/bsNotify.js -------------------------------------------------------------------------------- /src/scripts/modules/bsSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/modules/bsSocket.js -------------------------------------------------------------------------------- /src/scripts/modules/bsStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/modules/bsStore.js -------------------------------------------------------------------------------- /src/scripts/services/Options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/services/Options.js -------------------------------------------------------------------------------- /src/scripts/services/Pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/services/Pages.js -------------------------------------------------------------------------------- /src/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scripts/utils.js -------------------------------------------------------------------------------- /src/scss/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/_vars.scss -------------------------------------------------------------------------------- /src/scss/components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/components.scss -------------------------------------------------------------------------------- /src/scss/core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/core.scss -------------------------------------------------------------------------------- /src/scss/modules/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/modules/_mixins.scss -------------------------------------------------------------------------------- /src/scss/modules/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/modules/_reset.scss -------------------------------------------------------------------------------- /src/scss/theme/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_animations.scss -------------------------------------------------------------------------------- /src/scss/theme/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_base.scss -------------------------------------------------------------------------------- /src/scss/theme/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_buttons.scss -------------------------------------------------------------------------------- /src/scss/theme/_cloak.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_cloak.scss -------------------------------------------------------------------------------- /src/scss/theme/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_code.scss -------------------------------------------------------------------------------- /src/scss/theme/_custom-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_custom-icons.scss -------------------------------------------------------------------------------- /src/scss/theme/_disconnect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_disconnect.scss -------------------------------------------------------------------------------- /src/scss/theme/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_footer.scss -------------------------------------------------------------------------------- /src/scss/theme/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_forms.scss -------------------------------------------------------------------------------- /src/scss/theme/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_grid.scss -------------------------------------------------------------------------------- /src/scss/theme/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_header.scss -------------------------------------------------------------------------------- /src/scss/theme/_headings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_headings.scss -------------------------------------------------------------------------------- /src/scss/theme/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_helpers.scss -------------------------------------------------------------------------------- /src/scss/theme/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_links.scss -------------------------------------------------------------------------------- /src/scss/theme/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_lists.scss -------------------------------------------------------------------------------- /src/scss/theme/_main-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_main-content.scss -------------------------------------------------------------------------------- /src/scss/theme/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_misc.scss -------------------------------------------------------------------------------- /src/scss/theme/_msgs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_msgs.scss -------------------------------------------------------------------------------- /src/scss/theme/_notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_notifications.scss -------------------------------------------------------------------------------- /src/scss/theme/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_panel.scss -------------------------------------------------------------------------------- /src/scss/theme/_paragraphs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_paragraphs.scss -------------------------------------------------------------------------------- /src/scss/theme/_section-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_section-nav.scss -------------------------------------------------------------------------------- /src/scss/theme/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_sidebar.scss -------------------------------------------------------------------------------- /src/scss/theme/_spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_spinner.scss -------------------------------------------------------------------------------- /src/scss/theme/_state.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_state.scss -------------------------------------------------------------------------------- /src/scss/theme/_svg.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_svg.scss -------------------------------------------------------------------------------- /src/scss/theme/_switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_switch.scss -------------------------------------------------------------------------------- /src/scss/theme/_top-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/theme/_top-bar.scss -------------------------------------------------------------------------------- /src/scss/vendor/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/vendor/_fonts.scss -------------------------------------------------------------------------------- /src/scss/vendor/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/scss/vendor/_normalize.scss -------------------------------------------------------------------------------- /src/svg-template.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg-template.tmpl -------------------------------------------------------------------------------- /src/svg/bin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/bin.svg -------------------------------------------------------------------------------- /src/svg/block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/block.svg -------------------------------------------------------------------------------- /src/svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/book.svg -------------------------------------------------------------------------------- /src/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/bug.svg -------------------------------------------------------------------------------- /src/svg/circle-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/circle-delete.svg -------------------------------------------------------------------------------- /src/svg/circle-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/circle-minus.svg -------------------------------------------------------------------------------- /src/svg/circle-ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/circle-ok.svg -------------------------------------------------------------------------------- /src/svg/circle-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/circle-pause.svg -------------------------------------------------------------------------------- /src/svg/circle-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/circle-play.svg -------------------------------------------------------------------------------- /src/svg/circle-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/circle-plus.svg -------------------------------------------------------------------------------- /src/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/code.svg -------------------------------------------------------------------------------- /src/svg/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/cog.svg -------------------------------------------------------------------------------- /src/svg/devices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/devices.svg -------------------------------------------------------------------------------- /src/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/github.svg -------------------------------------------------------------------------------- /src/svg/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/globe.svg -------------------------------------------------------------------------------- /src/svg/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/help.svg -------------------------------------------------------------------------------- /src/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/home.svg -------------------------------------------------------------------------------- /src/svg/imac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/imac.svg -------------------------------------------------------------------------------- /src/svg/jh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/jh.svg -------------------------------------------------------------------------------- /src/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/list.svg -------------------------------------------------------------------------------- /src/svg/list2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/list2.svg -------------------------------------------------------------------------------- /src/svg/logo-word.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/logo-word.svg -------------------------------------------------------------------------------- /src/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/logo.svg -------------------------------------------------------------------------------- /src/svg/newtab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/newtab.svg -------------------------------------------------------------------------------- /src/svg/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/pen.svg -------------------------------------------------------------------------------- /src/svg/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/pencil.svg -------------------------------------------------------------------------------- /src/svg/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/plug.svg -------------------------------------------------------------------------------- /src/svg/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/repeat.svg -------------------------------------------------------------------------------- /src/svg/square-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/square-add.svg -------------------------------------------------------------------------------- /src/svg/square-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/square-up.svg -------------------------------------------------------------------------------- /src/svg/sync-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/sync-browser.svg -------------------------------------------------------------------------------- /src/svg/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/sync.svg -------------------------------------------------------------------------------- /src/svg/syncall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/syncall.svg -------------------------------------------------------------------------------- /src/svg/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/target.svg -------------------------------------------------------------------------------- /src/svg/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/terminal.svg -------------------------------------------------------------------------------- /src/svg/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/time.svg -------------------------------------------------------------------------------- /src/svg/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/trash.svg -------------------------------------------------------------------------------- /src/svg/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/twitter.svg -------------------------------------------------------------------------------- /src/svg/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/src/svg/wifi.svg -------------------------------------------------------------------------------- /static/components/button-bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/components/button-bars.html -------------------------------------------------------------------------------- /static/components/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/components/buttons.html -------------------------------------------------------------------------------- /static/components/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/components/footer.html -------------------------------------------------------------------------------- /static/components/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/components/forms.html -------------------------------------------------------------------------------- /static/components/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/components/header.html -------------------------------------------------------------------------------- /static/components/heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/components/heading.html -------------------------------------------------------------------------------- /static/components/help-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/components/help-content.html -------------------------------------------------------------------------------- /static/components/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/components/lists.html -------------------------------------------------------------------------------- /static/components/panels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/components/panels.html -------------------------------------------------------------------------------- /static/components/switches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/components/switches.html -------------------------------------------------------------------------------- /static/components/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/components/type.html -------------------------------------------------------------------------------- /static/content/help.content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/static/content/help.content.html -------------------------------------------------------------------------------- /tasks/crossbow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/tasks/crossbow.js -------------------------------------------------------------------------------- /tasks/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/tasks/icons.js -------------------------------------------------------------------------------- /templates/config.item.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/templates/config.item.tmpl -------------------------------------------------------------------------------- /templates/config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/templates/config.tmpl -------------------------------------------------------------------------------- /templates/directives/bs-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/templates/directives/bs-switch.html -------------------------------------------------------------------------------- /templates/inline.template.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/templates/inline.template.tmpl -------------------------------------------------------------------------------- /templates/plugin.item.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/templates/plugin.item.tmpl -------------------------------------------------------------------------------- /templates/plugin.tmpl: -------------------------------------------------------------------------------- 1 | %markup% -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/client/e2e/bs-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/bs-init.js -------------------------------------------------------------------------------- /test/client/e2e/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/config.js -------------------------------------------------------------------------------- /test/client/e2e/e2e.plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/e2e.plugins.js -------------------------------------------------------------------------------- /test/client/e2e/e2e.server-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/e2e.server-info.js -------------------------------------------------------------------------------- /test/client/e2e/e2e.sync-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/e2e.sync-options.js -------------------------------------------------------------------------------- /test/client/e2e/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/test-utils.js -------------------------------------------------------------------------------- /test/client/e2e/tests/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/tests/history.js -------------------------------------------------------------------------------- /test/client/e2e/tests/history.newtabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/tests/history.newtabs.js -------------------------------------------------------------------------------- /test/client/e2e/tests/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/tests/home.js -------------------------------------------------------------------------------- /test/client/e2e/tests/network-throttle.auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/tests/network-throttle.auto.js -------------------------------------------------------------------------------- /test/client/e2e/tests/network-throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/tests/network-throttle.js -------------------------------------------------------------------------------- /test/client/e2e/tests/network-throttle.manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/tests/network-throttle.manual.js -------------------------------------------------------------------------------- /test/client/e2e/tests/network-throttle.remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/tests/network-throttle.remove.js -------------------------------------------------------------------------------- /test/client/e2e/tests/plugins.inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/tests/plugins.inline.js -------------------------------------------------------------------------------- /test/client/e2e/tests/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/tests/plugins.js -------------------------------------------------------------------------------- /test/client/e2e/tests/remote-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/client/e2e/tests/remote-debug.js -------------------------------------------------------------------------------- /test/fixtures/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/content.html -------------------------------------------------------------------------------- /test/fixtures/css/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/css/blog.css -------------------------------------------------------------------------------- /test/fixtures/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/css/bootstrap.css -------------------------------------------------------------------------------- /test/fixtures/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/forms.html -------------------------------------------------------------------------------- /test/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/index.html -------------------------------------------------------------------------------- /test/fixtures/plugin-multi-templates/index.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin-multi-templates/index.plugin.js -------------------------------------------------------------------------------- /test/fixtures/plugin-multi-templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin-multi-templates/package.json -------------------------------------------------------------------------------- /test/fixtures/plugin-multi-templates/ui/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin-multi-templates/ui/client.js -------------------------------------------------------------------------------- /test/fixtures/plugin-multi-templates/ui/client2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin-multi-templates/ui/client2.js -------------------------------------------------------------------------------- /test/fixtures/plugin-multi-templates/ui/test.directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin-multi-templates/ui/test.directive.html -------------------------------------------------------------------------------- /test/fixtures/plugin-multi-templates/ui/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin-multi-templates/ui/test.html -------------------------------------------------------------------------------- /test/fixtures/plugin-multi-templates/ui/test.list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin-multi-templates/ui/test.list.html -------------------------------------------------------------------------------- /test/fixtures/plugin-noui/index.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin-noui/index.plugin.js -------------------------------------------------------------------------------- /test/fixtures/plugin-noui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin-noui/package.json -------------------------------------------------------------------------------- /test/fixtures/plugin/index.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin/index.plugin.js -------------------------------------------------------------------------------- /test/fixtures/plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin/package.json -------------------------------------------------------------------------------- /test/fixtures/plugin/ui/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin/ui/client.js -------------------------------------------------------------------------------- /test/fixtures/plugin/ui/test.directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin/ui/test.directive.html -------------------------------------------------------------------------------- /test/fixtures/plugin/ui/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/plugin/ui/test.html -------------------------------------------------------------------------------- /test/fixtures/scrolling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/fixtures/scrolling.html -------------------------------------------------------------------------------- /test/opts.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/opts.server.json -------------------------------------------------------------------------------- /test/protractor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/protractor.sh -------------------------------------------------------------------------------- /test/server/history/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/server/history/history.js -------------------------------------------------------------------------------- /test/server/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/server/init.js -------------------------------------------------------------------------------- /test/server/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/server/plugins.js -------------------------------------------------------------------------------- /test/server/plugins.templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/server/plugins.templates.js -------------------------------------------------------------------------------- /test/server/remote-debug/client.files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/server/remote-debug/client.files.js -------------------------------------------------------------------------------- /test/server/remote-debug/latency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/server/remote-debug/latency.js -------------------------------------------------------------------------------- /test/server/remote-debug/no-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/server/remote-debug/no-cache.js -------------------------------------------------------------------------------- /test/server/remote-debug/throttle.https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/server/remote-debug/throttle.https.js -------------------------------------------------------------------------------- /test/server/remote-debug/throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/test/server/remote-debug/throttle.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/UI/HEAD/yarn.lock --------------------------------------------------------------------------------