diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2014-08-14 15:12:37 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2014-08-14 15:12:37 -0230 |
commit | 99b114636718d5222be16a8926af36dbb222cb63 (patch) | |
tree | b01b228cfa8f2d95baccc756cc805c7a74fdde7d /js/demo/Ice/hello/browser/Client.js | |
parent | ICE-5636 Gui demos do not use ice_invocationTimeout (diff) | |
download | ice-99b114636718d5222be16a8926af36dbb222cb63.tar.bz2 ice-99b114636718d5222be16a8926af36dbb222cb63.tar.xz ice-99b114636718d5222be16a8926af36dbb222cb63.zip |
Fixed ice_invocationTimout usage in IceDiscovery hello demos
Diffstat (limited to 'js/demo/Ice/hello/browser/Client.js')
-rw-r--r-- | js/demo/Ice/hello/browser/Client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/demo/Ice/hello/browser/Client.js b/js/demo/Ice/hello/browser/Client.js index 23a720cca9e..c1a460ccb56 100644 --- a/js/demo/Ice/hello/browser/Client.js +++ b/js/demo/Ice/hello/browser/Client.js @@ -28,7 +28,7 @@ function createProxy() // Set or clear the timeout. // var timeout = $("#timeout").val(); - proxy = proxy.ice_timeout(timeout > 0 ? timeout : -1); + proxy = proxy.ice_invocationTimeout(timeout > 0 ? timeout : -1); // // Set the mode and protocol |