1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-06 03:50:04 +02:00
OpenSTF/res/app/control-panes/dashboard/upload/upload-controller.js
2014-04-03 17:28:04 +09:00

41 lines
1,016 B
JavaScript

module.exports = function UploadCtrl($scope, $rootScope, SettingsService) {
$scope.installation = null
$scope.clear = function () {
$scope.installation = null
}
$rootScope.install = function ($files) {
return $rootScope.control.install($files)
.then(function (tx) {
var manifest = tx.manifest
return tx.promise
.progressed(function (result) {
$scope.$apply(function () {
result.manifest = manifest
$scope.installation = result
})
})
.then(function (result) {
$scope.$apply(function () {
result.manifest = manifest
$scope.installation = result
})
})
})
}
//
// $scope.installEnabled = true
// SettingsService.bind($scope, {
// key: 'installEnabled',
// storeName: 'Upload'
// })
//
// //$scope.launchEnabled = true
// SettingsService.bind($scope, {
// key: 'launchEnabled',
// storeName: 'Upload'
// })
}