// 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'
        };
    }
]);