12 lines
414 B
JavaScript
12 lines
414 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular.module('ariaNg').controller('Aria2StatusController', ['$rootScope', '$scope', 'aria2SettingService', function ($rootScope, $scope, aria2SettingService) {
|
|
$rootScope.loadPromise = (function () {
|
|
return aria2SettingService.getServerStatus(function (result) {
|
|
$scope.serverStatus = result;
|
|
});
|
|
})();
|
|
}]);
|
|
})();
|