Skip to content

Commit

Permalink
Move Shutdown and Reboot buttons to Right Side Panel
Browse files Browse the repository at this point in the history
- may as well move them here to clean up the Left Side Panel a bit more
  • Loading branch information
southafricanrob committed Mar 16, 2015
1 parent 9bf9685 commit 0f4be1b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions mopidy_musicbox_webclient/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@
<a href="#search" onclick="switchContent('search' ); return false;">
<span class="navtxt">Search </span><i class="fa fa-search"></i></a>
</li>
<!--
<li id="navEnterFullscreen" data-icon="false">
<a href="#">
<span class="navtxt"> Fullscreen </span><i class="fa fa-desktop"></i></a>
Expand All @@ -170,17 +169,18 @@
<a href="#">
<span class="navtxt"> Exit Fullscreen </span><i class="fa fa-desktop"></i></a>
</li>
-->
<!--
<li id="navSettings" data-icon="false">
<a href="/settings/">
<span class="navtxt"> Settings </span><i class="fa fa-cog"></i></a>
</li>
-->
<!--
<li id="navshutdown" data-icon="false">
<a href="system.html">
<span class="navtxt">System </span><i class="fa fa-power-off"></i></a>
</li>
-->
<li id="vol_li" data-icon="false">
<div id="vol1"><!-- slider for volume -->
<a href="#" onclick="doMute(); return false;"><i class="fa fa-volume-up" id="mutebt"></i></a>
Expand Down Expand Up @@ -225,8 +225,12 @@ <h1 id="" >&nbsp;</h1>
<span class="navtxt"> Settings </span><i class="fa fa-cog"></i></a>
</li>
<li id="navshutdown" data-icon="false">
<a href="system.html">
<span class="navtxt">System </span><i class="fa fa-power-off"></i></a>
<a href="#" onclick="haltSystem(); return false;" >
<span class="navtxt">Shutdown </span><i class="fa fa-power-off"></i></a>
</li>
<li id="" data-icon="false">
<a href="#" onclick="rebootSystem(); return false;">
<span class="navtxt">Reboot </span><i class="fa fa-cogs"></i></a>
</li>

</ul>
Expand All @@ -236,7 +240,7 @@ <h1 id="" >&nbsp;</h1>
<br>
<br>
<br>


<form>
<input type="submit" onclick="switch_style('dark');return false;" name="theme" value="Dark Theme" id="dark">
Expand Down

0 comments on commit 0f4be1b

Please sign in to comment.