view Platforms/Wasm/WasmDelayedCallExecutor.js @ 455:e3a6e3bf5c7c

changed the windowing tracker sensitivity. It was not usable with 16bits full range
author Alain Mazy <alain@mazy.be>
date Mon, 21 Jan 2019 22:41:24 +0100
parents 26b90b110719
children 5055031f4a06
line wrap: on
line source

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