Files
meanTorrent/modules/about/client/controllers/about.client.controller.js
2017-10-18 14:34:16 +08:00

19 lines
382 B
JavaScript

(function () {
'use strict';
angular
.module('about')
.controller('AboutController', AboutController);
AboutController.$inject = ['$scope', '$translate', 'getStorageLangService'];
function AboutController($scope, $translate, getStorageLangService) {
var vm = this;
vm.lang = getStorageLangService.getLang();
vm.init = function () {
};
}
}());