mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-09-11 01:39:47 +02:00
feat(articles): Modify articles module to implement style guidelines.
Update the articles module to implement the style guidelines. Much of this work is from @trainerbill Closes #874 Closes #339
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
angular
|
||||
.module('articles')
|
||||
.controller('ArticlesListController', ArticlesListController);
|
||||
|
||||
ArticlesListController.$inject = ['ArticlesService'];
|
||||
|
||||
function ArticlesListController(ArticlesService) {
|
||||
var vm = this;
|
||||
|
||||
vm.articles = ArticlesService.query();
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user