Fix screen controller

This commit is contained in:
Gunther Brunner
2014-02-19 16:12:27 +09:00
parent 38cfa63ab4
commit 16f484dbca
5 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
module.exports = function DeviceScreenCtrl($scope, ScalingService) {
$scope.ready = false
$scope.displayError = false
$scope.ScalingService = ScalingService
$scope.promiseOfDevice.then(function () {
$scope.ready = true
})
}