view Deprecated/Platforms/Wasm/WasmDelayedCallExecutor.js @ 1494:5a3ef478deb6

reverted useless change
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 25 Jun 2020 14:25:52 +0200
parents 419d0320c344
children
line wrap: on
line source

mergeInto(LibraryManager.library, {
  WasmDelayedCallExecutor_Schedule: function(callable, timeoutInMs/*, payload*/) {
    setTimeout(function() {
      window.WasmDelayedCallExecutor_ExecuteCallback(callable/*, payload*/);
    }, timeoutInMs);
  }
});