mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:03:30 +02:00
14 lines
287 B
JavaScript
14 lines
287 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)
|
|
}
|
|
}
|