15 lines
373 B
JavaScript
15 lines
373 B
JavaScript
'use strict';
|
|
|
|
angular.module('adagios.topbar', ['adagios.live'])
|
|
|
|
.controller('TopBarCtrl', ['$scope', '$http', 'GetProblems', function ($scope, $http, GetProblems) {
|
|
$scope.notifications = GetProblems;
|
|
}])
|
|
|
|
.directive('topbar', function () {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: "topbar/topbar.html"
|
|
};
|
|
});
|