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

ng-enter.js 450B

    angular.module('codexApp') .directive('ngEnter', function() { return function(scope, element, attrs) { element.bind("keydown keypress", function(event) { if(event.which === 13) { scope.$apply(function(){ scope.$eval(attrs.ngEnter); }); event.preventDefault(); } }); }; });