Desktop markdown wiki app. Built with node, Electron Framework and AngularJS.

right-click-directive.js 377B

    angular.module('codexApp') .directive('ngRightClick', function($parse) { return function(scope, element, attrs) { var fn = $parse(attrs.ngRightClick); element.bind('contextmenu', function(event) { scope.$apply(function() { event.preventDefault(); fn(scope, {$event:event}); }); }); }; });