From 325fce407b8bbf9159de5d869e7f072b1b2bdc8d Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 22 Nov 2012 17:52:19 -0800 Subject: [PATCH] Fix window-open check (namespace change). --- guacamole/src/main/webapp/scripts/root-ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/src/main/webapp/scripts/root-ui.js b/guacamole/src/main/webapp/scripts/root-ui.js index 008e8584a..de0dee945 100644 --- a/guacamole/src/main/webapp/scripts/root-ui.js +++ b/guacamole/src/main/webapp/scripts/root-ui.js @@ -179,7 +179,7 @@ GuacamoleRootUI.Connection = function(config) { // If window did not already exist, set up as // Guacamole client - if (!current.GuacamoleUI) + if (!current.GuacUI) window.open(url, config.id); };