summaryrefslogtreecommitdiff
path: root/js/src
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2016-10-04 10:20:24 +0200
committerJose <jose@zeroc.com>2016-10-04 10:20:24 +0200
commit8c3173fc13a8642e3a165f23f9bf1d087aec4a55 (patch)
tree2b75200cedf2241e5894f996bfc95e70c1fd685d /js/src
parentAnother fix for ICE-7399 (diff)
downloadice-8c3173fc13a8642e3a165f23f9bf1d087aec4a55.tar.bz2
ice-8c3173fc13a8642e3a165f23f9bf1d087aec4a55.tar.xz
ice-8c3173fc13a8642e3a165f23f9bf1d087aec4a55.zip
Fixed (ICE-7404) - js Ice/binding hung on Windows with Chrome
Diffstat (limited to 'js/src')
-rw-r--r--js/src/Ice/browser/TimerUtil.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/Ice/browser/TimerUtil.js b/js/src/Ice/browser/TimerUtil.js
index 99c7b3f2608..10ff74c28b8 100644
--- a/js/src/Ice/browser/TimerUtil.js
+++ b/js/src/Ice/browser/TimerUtil.js
@@ -30,7 +30,7 @@ function createTimerObject()
Timer.setInterval = function () { setInterval.apply(null, arguments); };
Timer.clearInterval = function () { clearInterval.apply(null, arguments); };
Timer.setImmediate = typeof(setImmediate) == "function" ?
- function () { setImmediate.apply(null, arguments); } :
+ function () { setImmediate.apply(null, arguments); } :
function () { setTimeout.apply(null, arguments); };
return Timer;
}