-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.htm
23 lines (22 loc) · 1.16 KB
/
menu.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
function on_mouse_enter() {
if (get_history_status() === 'saved')
document.getElementById("status").innerHTML = '';
else
document.getElementById("status").innerHTML = ' ⚠';
}
</script>
<div class="dropdown" style="width: 100%; position: fixed; width: 120px; top: 22px; right: 43px; ">
<img src="{{path_to_gallery}}menu-short.png" style="float: right" alt="Menu icon" onmouseenter="on_mouse_enter()" >
<div class="dropdown-content">
<img src="{{path_to_gallery}}menu-short.png" style="float: right" alt="Menu icon" onmouseenter="on_mouse_enter()" >
<p style="height:12px" ></p>
<a href="{{path_to_gallery}}movies-vrac.htm">{{T('Storage order')}}</a>
<a href="{{path_to_gallery}}movies-alpha.htm">{{T('Sort by title')}}</a>
<a href="{{path_to_gallery}}movies-year.htm">{{T('Sort by year')}}</a>
<a href="{{path_to_gallery}}movies-director.htm">{{T('Sort by director')}}</a>
<a href="{{path_to_gallery}}movies-actor.htm">{{T('Sort by actor')}}</a>
<a href="{{path_to_gallery}}movies-stats.htm">{{T('Statistics')}}</a>
<a href="{{path_to_gallery}}movies-history.htm">{{T('History')}}<span id='status'></span></a>
</div>
</div>