123456789101112131415161718192021222324252627 |
- * @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;
- }
- });
- }]);
|