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:
Ryan Hutchison
2016-01-01 14:58:42 -05:00
parent 169d4cd3e2
commit b3ad56efa3
14 changed files with 511 additions and 260 deletions

View File

@@ -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();
}
})();