Files
stf-DeviceFarmer/res/app/components/stf/screen/screen-controller.js
2016-01-19 23:08:33 +09:00

14 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)
}
}