16 lines
679 B
HTML
16 lines
679 B
HTML
|
<div bs-panel="controls outline">
|
||
|
<h1 bs-heading><icon icon="{{ctrl.section.icon}}"></icon> {{ctrl.section.title}}</h1>
|
||
|
</div>
|
||
|
<div bs-button-row ng-if="ctrl.visited.length">
|
||
|
<button bs-button="icon-left inline" ng-click="ctrl.clearVisited()" ng-show="ctrl.visited.length">
|
||
|
<svg bs-svg-icon><use xlink:href="#svg-bin"></use></svg>
|
||
|
Clear all
|
||
|
</button>
|
||
|
</div>
|
||
|
<div bs-panel ng-if="!ctrl.visited.length" id="bs-history-empty">
|
||
|
<div bs-panel-content="basic">
|
||
|
<p>Pages you navigate to will appear here - making it easy
|
||
|
to sync all devices to a specific page</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
<history-list options="ctrl.options"></history-list>
|