Files
meanTorrent/modules/core/client/controllers/home.client.controller.js
OldHawk 111ab49b06 add many multilingual fields
add torrents and forum topbar menu
2017-03-26 00:52:31 +08:00

18 lines
309 B
JavaScript

(function () {
'use strict';
angular
.module('core')
.controller('HomeController', HomeController);
HomeController.$inject = ['$scope', '$translate'];
function HomeController($scope, $translate) {
var vm = this;
//$translate.use('en');
vm.COMING = 'coming soon...';
}
}());