Files
meanTorrent/modules/core/client/controllers/home.client.controller.js
Ryan Hutchison b2462ec86c feat(core): Modify core module to implement style guidelines.
Update the core module to implement the style guidelines.
Reduce size of init.js - moved filter logic out to it's own config.
Rename Menus to menuService
2016-03-23 15:41:57 -04:00

12 lines
173 B
JavaScript

(function () {
'use strict';
angular
.module('core')
.controller('HomeController', HomeController);
function HomeController() {
var vm = this;
}
}());