diff options
author | Jose <jose@zeroc.com> | 2016-10-04 10:20:24 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-10-04 10:20:24 +0200 |
commit | 8c3173fc13a8642e3a165f23f9bf1d087aec4a55 (patch) | |
tree | 2b75200cedf2241e5894f996bfc95e70c1fd685d /js/src/Ice/browser/TimerUtil.js | |
parent | Another fix for ICE-7399 (diff) | |
download | ice-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/Ice/browser/TimerUtil.js')
-rw-r--r-- | js/src/Ice/browser/TimerUtil.js | 2 |
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; } |