]> wagnertech.de Git - kivitendo-erp.git/blobdiff - templates/webpages/menu/menu.html
Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / templates / webpages / menu / menu.html
diff --git a/templates/webpages/menu/menu.html b/templates/webpages/menu/menu.html
deleted file mode 100644 (file)
index a748c87..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-[%- USE L %]
-[%- USE HTML %]
-<body class="menu">
-
-<div id='html-menu'>
-[%- FOREACH item IN sections %]
- <div id='mi[% item.item_id %]' class='mi [% item.spacer %] [% item.class %]'>[%- IF item.href %]
-  <a href="[% item.href | html %]" class='ml' target='[% item.target %]'><span class="mii ms">[% L.img_tag(item.img) %]</span><span class='mic'>[% item.label %]</span></a>[%- ELSE %]
-  <span class="mii ms">[% L.img_tag(item.img) %]</span><span class='mic'>[% item.label %]</span>[%- END %]
- </div>
-[%- END %]
-</div>
-<script type='text/javascript'>
-  $(function(){
-    $('#html-menu div.i, #html-menu div.sm').hide();
-    $('#html-menu div.m').each(function() {
-      $(this).click(function(){
-        $('#html-menu div.mi').not('div.m').not('[id^=' + $(this).attr('id') + '_]').hide();
-        $('#html-menu div.mi[id^=' + $(this).attr('id') + '_]').toggle();
-      });
-    });
-  });
-</script>
-</body>
-</html>