app-nav-bar.js 443 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// appNavBar
// navigation bar for application
frameworkModule.directive('appNavBar', ['$log',
    function ($log) {
        'use strict';

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

        return {
            restrict: 'E',
            templateUrl: '/app/framework/app-nav-bar/app-nav-bar.html' + '?_=' + Math.random(),
            replace: true,
            scope: {},
            controller: 'AppNavBarController'
        };
    }
]);