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

sidebar-ctrl.js 331B

12345678910111213141516
  1. /**
  2. * @ngdoc function
  3. * @name domainManagerApp.controller:AboutCtrl
  4. * @description
  5. * # AboutCtrl
  6. * Controller of the domainManagerApp
  7. */
  8. angular.module('codexApp.sidebar', [])
  9. .controller('SidebarCtrl',['$scope', '$rootScope', '$state', function ($scope, $rootScope, $state) {
  10. console.log('Sidebar loaded')
  11. }]);