2020-02-09 12:08:25 +00:00
|
|
|
<ion-list>
|
2020-10-13 12:54:14 +00:00
|
|
|
<ion-item button (click)="onSelect('search_everywhere')">
|
|
|
|
<i slot="start" class="fa fa-search"></i>
|
|
|
|
<ion-label>Search Everywhere</ion-label>
|
|
|
|
</ion-item>
|
2020-10-18 17:57:15 +00:00
|
|
|
<!--<ion-item button (click)="onSelect('html_export')">
|
2020-10-13 12:54:14 +00:00
|
|
|
<i slot="start" class="fa fa-code"></i>
|
2020-02-09 12:08:25 +00:00
|
|
|
<ion-label>Export to HTML Site</ion-label>
|
2020-10-18 17:57:15 +00:00
|
|
|
</ion-item>-->
|
2020-02-11 06:39:47 +00:00
|
|
|
<ion-item button (click)="onSelect('toggle_darkmode')">
|
2020-10-13 12:54:14 +00:00
|
|
|
<i slot="start" class="fa" [ngClass]="isDark() ? 'fa-sun' : 'fa-moon'"></i>
|
2020-02-11 06:39:47 +00:00
|
|
|
<ion-label>{{ isDark() ? 'To The Light!' : 'Go Dark...' }}</ion-label>
|
|
|
|
</ion-item>
|
2020-10-29 04:48:46 +00:00
|
|
|
<ion-item button (click)="onSelect('prefetch_data')">
|
|
|
|
<i slot="start" class="fa fa-download"></i>
|
|
|
|
<ion-label>Prefetch Offline Data</ion-label>
|
|
|
|
</ion-item>
|
|
|
|
<ion-item button (click)="onSelect('toggle_auto_prefetch')">
|
|
|
|
<i slot="start" class="fa" [ngClass]="isPrefetch() ? 'fa-check-square' : 'fa-square'"></i>
|
|
|
|
<ion-label>Auto-Prefetch</ion-label>
|
|
|
|
</ion-item>
|
2020-02-11 06:39:47 +00:00
|
|
|
<ion-item button (click)="onSelect('logout')">
|
2020-10-13 12:54:14 +00:00
|
|
|
<i slot="start" class="fa fa-sign-out-alt"></i>
|
2020-02-11 06:39:47 +00:00
|
|
|
<ion-label>Logout</ion-label>
|
|
|
|
</ion-item>
|
2020-02-09 12:08:25 +00:00
|
|
|
</ion-list>
|