Is there any guideline about how to edit iViewer's menu?
Posted: Mon Sep 17, 2018 10:04 am
Is there any guideline about how to edit iViewer's menu?
In particular, I'd like to add menu items to jump to another URL for Help. Can anybody suggest what to edit? I mean in the source code it is written in simple HTML, but how can we tweak it in the giant OMERO software?
Even if there is a way to edit it, that change will be lost every time I update OMERO. Do you have any suggestion to deal with this?
In particular, I'd like to add menu items to jump to another URL for Help. Can anybody suggest what to edit? I mean in the source code it is written in simple HTML, but how can we tweak it in the giant OMERO software?
- Code: Select all
<div class="dropdown">
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">Help <span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li click.delegate="showAbout()" class="au-target" au-target-id="22"> <a href="#">About OMERO.iviewer</a>
</li>
<li> <a target="_blank" href="https://github.com/ome/omero-iviewer"> OMERO.iviewer on Github </a>
</li>
</ul>
</div>
Even if there is a way to edit it, that change will be lost every time I update OMERO. Do you have any suggestion to deal with this?