blob: 8078c27883a76d7dbe8394f38202361cf3181cae [file] [log] [blame]
module.exports = function DeviceScreenCtrl(
$scope
, $rootScope
, ScalingService
, InstallService
) {
$scope.displayError = false
$scope.ScalingService = ScalingService
$scope.installFile = function($files) {
return InstallService.installFile($scope.control, $files)
}
}