modify style
This commit is contained in:
parent
4618117374
commit
6d6e72d809
|
@ -1,7 +1,7 @@
|
|||
(function () {
|
||||
'use strict';
|
||||
|
||||
angular.module('ariaNg').controller('NewTaskController', ['$rootScope', '$scope', '$location', 'aria2SettingService', 'aria2TaskService', function ($rootScope, $scope, $location, aria2SettingService, aria2TaskService) {
|
||||
angular.module('ariaNg').controller('NewTaskController', ['$rootScope', '$scope', '$location', '$timeout', 'aria2SettingService', 'aria2TaskService', function ($rootScope, $scope, $location, $timeout, aria2SettingService, aria2TaskService) {
|
||||
var tabOrders = ['download', 'options'];
|
||||
|
||||
$scope.context = {
|
||||
|
@ -92,5 +92,9 @@
|
|||
|
||||
optionStatus.setReady();
|
||||
};
|
||||
|
||||
$rootScope.loadPromise = $timeout(function () {
|
||||
;//Do Nothing
|
||||
}, 100);
|
||||
}]);
|
||||
})();
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
(function () {
|
||||
'use strict';
|
||||
|
||||
angular.module('ariaNg').controller('AriaNgSettingsController', ['$scope', 'ariaNgLanguages', 'ariaNgCommonService', 'ariaNgSettingService', function ($scope, ariaNgLanguages, ariaNgCommonService, ariaNgSettingService) {
|
||||
angular.module('ariaNg').controller('AriaNgSettingsController', ['$rootScope', '$scope', '$timeout', 'ariaNgLanguages', 'ariaNgCommonService', 'ariaNgSettingService', function ($rootScope, $scope, $timeout, ariaNgLanguages, ariaNgCommonService, ariaNgSettingService) {
|
||||
$scope.context = {
|
||||
languages: ariaNgLanguages,
|
||||
availableTime: ariaNgCommonService.getTimeOptions([1000, 2000, 3000, 5000, 10000, 30000, 60000], true),
|
||||
|
@ -9,5 +9,9 @@
|
|||
};
|
||||
|
||||
$scope.settingService = ariaNgSettingService;
|
||||
|
||||
$rootScope.loadPromise = $timeout(function () {
|
||||
;//Do Nothing
|
||||
}, 100);
|
||||
}]);
|
||||
})();
|
||||
|
|
Reference in a new issue