mirror of
https://github.com/openstf/stf
synced 2025-10-05 10:39:25 +02:00
13 lines
286 B
JavaScript
13 lines
286 B
JavaScript
module.exports = function DeviceScreenCtrl(
|
|
$scope
|
|
, $rootScope
|
|
, ScalingService
|
|
, InstallService
|
|
) {
|
|
$scope.displayError = false
|
|
$scope.ScalingService = ScalingService
|
|
|
|
$scope.installFile = function($files) {
|
|
return InstallService.installFile($scope.control, $files)
|
|
}
|
|
}
|