app-footer.js 594 Bytes
// appNavBar
// navigation bar for application
frameworkModule.directive('appFooter', ['$log',
    function ($log) {
        'use strict';

        $log.debug('appFooter.ctor()...');

        return {
            restrict: 'E',
            templateUrl: '/app/framework/app-footer/app-footer.html' + '?_=' + Math.random(),
            replace: true,
            transclude: true,
            scope: {},
            controller: 'AppFooterController',
            link: function (scope, elm, attrs)
            {
                scope.version = attrs.version;
            }
        };
    }
]);