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

general-prefs-ctrl.js 458B

123456789101112131415161718
  1. /**
  2. * @ngdoc function
  3. * @name domainManagerApp.controller:AboutCtrl
  4. * @description
  5. * # AboutCtrl
  6. * Controller of the domainManagerApp
  7. */
  8. angular.module('codexApp.prefs.general', [])
  9. .controller('GeneralPrefsCtrl', ['$scope', '$rootScope', '$state', '$location', 'FileService', 'PrefsService', '$timeout', function ($scope, $rootScope, $state, $location, FileService, PrefsService, $timeout) {
  10. console.log("-> Preferences/General");
  11. }]);