connections.html 951 B

123456789101112131415161718
  1. <div bs-panel="controls outline">
  2. <h1 bs-heading><icon icon="{{section.icon}}"></icon> {{section.title}}</h1>
  3. </div>
  4. <div bs-panel ng-if="!ui.connections.length">
  5. <div bs-panel-content="basic">
  6. <p>Connected devices/browsers will be listed here. If you are not seeing your device in the list,
  7. it's probably because the Browsersync script tag is not being loaded on your page.</p>
  8. <p>
  9. Browsersync works by injecting an asynchronous script tag (<code>&lt;script async&gt;...&lt;/script&gt;</code>) right after the &lt;body&gt; tag during initial request. In order for this to work properly the &lt;body&gt; tag must be present. Alternatively you can provide a custom rule for the snippet using snippetOptions
  10. </p>
  11. </div>
  12. </div>
  13. <div bs-skinny>
  14. <connection-list ng-if="ui.connections"
  15. options="options"
  16. connections="ui.connections"></connection-list>
  17. </div>