Don't force controls on bottom tabs
This commit is contained in:
parent
d373ffeb79
commit
355b04c12b
1 changed files with 1 additions and 5 deletions
|
@ -22,15 +22,11 @@ import { APP, SIDEBARTOP, SIDEBARBOTTOM } from '../config'
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
<div class="sidebar-bottom">
|
<div class="sidebar-bottom">
|
||||||
|
<!-- Notifications are inserted in automatically when you push notifications with Pushy. See the Pushy section in the main process. -->
|
||||||
{SIDEBARBOTTOM.map(item => (
|
{SIDEBARBOTTOM.map(item => (
|
||||||
<li data-tab={item.page}>
|
<li data-tab={item.page}>
|
||||||
<i class={item.icon}></i>
|
<i class={item.icon}></i>
|
||||||
<p>{item.text}</p>
|
<p>{item.text}</p>
|
||||||
<div id="Tab" class="webview-navigation">
|
|
||||||
<button onclick='document.querySelector(".active webview").goBack()'><i class="fa-solid fa-arrow-left-long"></i></button>
|
|
||||||
<button onclick='document.querySelector(".active webview").goForward()'><i class="fa-solid fa-arrow-right-long"></i></button>
|
|
||||||
<button onclick='document.querySelector(".active webview").reload()'><i class="fa-solid fa-arrow-rotate-right"></i></button>
|
|
||||||
</div>
|
|
||||||
</li>
|
</li>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in a new issue