From 24403e6fdce7ea1e4a1f083bc30ca5cdf08a10ea Mon Sep 17 00:00:00 2001 From: James Muehlner Date: Sat, 3 Jan 2015 15:28:35 -0800 Subject: [PATCH] GUAC-978 use $evalAsync instead of $apply to avoid digest in progress error. --- guacamole/src/main/webapp/app/client/directives/guacClient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/src/main/webapp/app/client/directives/guacClient.js b/guacamole/src/main/webapp/app/client/directives/guacClient.js index 77bd7f164..8d2682698 100644 --- a/guacamole/src/main/webapp/app/client/directives/guacClient.js +++ b/guacamole/src/main/webapp/app/client/directives/guacClient.js @@ -353,7 +353,7 @@ angular.module('client').directive('guacClient', [function guacClient() { } - $scope.$apply(updateDisplayScale); + $scope.$evalAsync(updateDisplayScale); });