diff options
author | Jose <jose@zeroc.com> | 2014-12-08 21:41:47 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-12-08 21:41:47 +0100 |
commit | 1adb2848ad36fe46989ac07c8bc7cc816ef59d2f (patch) | |
tree | 679c447acebc19c4e2217b6c37b289f372e1c737 | |
parent | Ubuntu Java JAR install fixes (diff) | |
download | ice-1adb2848ad36fe46989ac07c8bc7cc816ef59d2f.tar.bz2 ice-1adb2848ad36fe46989ac07c8bc7cc816ef59d2f.tar.xz ice-1adb2848ad36fe46989ac07c8bc7cc816ef59d2f.zip |
Fixed (ICE-6091) - Browser IceJS Chat Demo error
-rw-r--r-- | js/demo/ChatDemo/Client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/demo/ChatDemo/Client.js b/js/demo/ChatDemo/Client.js index 9c83c071150..830f458f598 100644 --- a/js/demo/ChatDemo/Client.js +++ b/js/demo/ChatDemo/Client.js @@ -105,7 +105,7 @@ var signin = function() id.properties = Ice.createProperties(); id.properties.setProperty("Ice.Default.Router", "Glacier2/router:wss -p 9090 -h " + hostname + " -r /chatwss"); - communicator = Ice.initialize(process.argv, id); + communicator = Ice.initialize(id); // // Get a proxy to the Glacier2 router using checkedCast to ensure |