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

prefs-service.js 339B

    angular.module('codexApp') .service('PrefsService', [ '$rootScope', '$http', function($rootScope, $http) { var views = ["All Notes", "All Files", "Notebooks"]; var current_view = "All Notes" this.getCurrentView = function() { return current_view; } this.setCurrentView = function(view) { current_view = view; } }])