<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.16/angular.min.js"></script>
<div ng-controller="MainCtrl">
<div context-menu="myContextDiv"> Right Click On the Item!
</div>
</div>
var myApp = angular.module("myApp",[]);
myApp.controller( "MainCtrl", [ "$scope", function($scope) {
console.log("Main Controller loaded.");
$scope.myContextDiv = "<ul id='contextmenu-node'><li class='contextmenu-item' ng-click='clickedItem1()'> Item 1 </li><li class='contextmenu-item' ng-click='clickedItem2()'> Item 2 </li></ul>";
$scope.clickedItem1 = function(){
console.log("Clicked item 1.");
};
$scope.clickedItem2 = function(){
console.log("Clicked item 2.");
};
}]);
myApp.directive( "contextMenu", function($compile){
contextMenu = {};
contextMenu.restrict = "AE";
contextMenu.link = function( lScope, lElem, lAttr ){
lElem.on("contextmenu", function (e) {
e.preventDefault(); // default context menu is disabled
// The customized context menu is defined in the main controller. To function the ng-click functions the, contextmenu HTML should be compiled.
lElem.append( $compile( lScope[ lAttr.contextMenu ])(lScope) );
// The location of the context menu is defined on the click position and the click position is catched by the right click event.
$("#contextmenu-node").css("left", e.clientX);
$("#contextmenu-node").css("top", e.clientY);
});
lElem.on("mouseleave", function(e){
console.log("Leaved the div");
// on mouse leave, the context menu is removed.
if($("#contextmenu-node") )
$("#contextmenu-node").remove();
});
};
return contextMenu;
});
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.