mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-13 02:42:23 +01:00
Added visual notification for user/article updates angular-ui-notification config added to core client config Notification idea from #369
18 lines
368 B
JavaScript
18 lines
368 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('articles')
|
|
.controller('ArticlesController', ArticlesController);
|
|
|
|
ArticlesController.$inject = ['$scope', 'articleResolve', 'Authentication'];
|
|
|
|
function ArticlesController($scope, article, Authentication) {
|
|
var vm = this;
|
|
|
|
vm.article = article;
|
|
vm.authentication = Authentication;
|
|
|
|
}
|
|
}());
|