website/Website/wwwroot/js/directives/templates/contextMenu.html

6 lines
No EOL
431 B
HTML

<div class="contextMenu" ng-if="show" ng-style="{left:menuX,top:menuY}">
<div ng-repeat="(name, func) in actions track by name" class="menuItem" ng-click="performAction(func)" ng-mouseover="changeSubMenuShowKey(name)">
{{name}}<span class="arrow" ng-if="!isFunction(func)"> &#8250;</span>
<context-menu ng-if="!isFunction(func)" actions="func" is-child="true" ng-show="subMenuShowKey==name"></context-menu>
</div>
</div>