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

footer-ctrl.js 595B

    /** * @ngdoc function * @name domainManagerApp.controller:AboutCtrl * @description * # AboutCtrl * Controller of the domainManagerApp */ angular.module('codexApp.footer', []) .controller('FooterCtrl',['$scope', '$rootScope', '$state', 'FileService', function ($scope, $rootScope, $state, FileService) { console.log('-> Footer loaded') $rootScope.$on('footer:info', function(info, data) { if(!$scope.$$phase) { $scope.$apply(function(){ $scope.footer_info = data; }); } else { $scope.footer_info = data; } }); }]);