[Frontend] Fixes for dropdown menu click issues
WTD-1404 WTD-1379 Context menu and view switcher menu fixed; Removed <a> with <li> and put ng-click on <li>
This commit is contained in:
@@ -23,15 +23,14 @@
|
||||
<div class="menu context-menu dropdown">
|
||||
<ul>
|
||||
|
||||
<li ng-repeat="menuAction in menuActions">
|
||||
<a href=""
|
||||
ng-click="menuAction.perform()"
|
||||
title="{{menuAction.getMetadata().description}}">
|
||||
<span class="ui-symbol icon type-icon">
|
||||
{{menuAction.getMetadata().glyph}}
|
||||
</span>
|
||||
{{menuAction.getMetadata().name}}
|
||||
</a>
|
||||
<li ng-repeat="menuAction in menuActions"
|
||||
ng-click="menuAction.perform()"
|
||||
title="{{menuAction.getMetadata().description}}"
|
||||
>
|
||||
<span class="ui-symbol icon type-icon">
|
||||
{{menuAction.getMetadata().glyph}}
|
||||
</span>
|
||||
{{menuAction.getMetadata().name}}
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user