bansho/app/navbar/navbar.js
2015-01-15 16:56:37 -05:00

15 lines
373 B
JavaScript

'use strict';
angular.module('adagios.navbar', ['adagios.live'])
.controller('NavBarCtrl', ['$scope', '$http', 'GetProblems', function ($scope, $http, GetProblems) {
$scope.notifications = GetProblems;
}])
.directive('navbar', function () {
return {
restrict: 'E',
templateUrl: "navbar/navbar.html"
};
});