diff options
Diffstat (limited to 'runtime/js/11_timers.js')
-rw-r--r-- | runtime/js/11_timers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js/11_timers.js b/runtime/js/11_timers.js index 046609f75..eef1d39b2 100644 --- a/runtime/js/11_timers.js +++ b/runtime/js/11_timers.js @@ -442,7 +442,7 @@ if ("function" === typeof callback) { callback(); } else { - eval(callback); + (0, eval)(callback); } } |