view Platforms/Wasm/WasmDelayedCallExecutor.js @ 523:aa00a49444c6 am-touch-events

fix
author amazy
date Tue, 12 Mar 2019 15:02:05 +0100
parents 5055031f4a06
children
line wrap: on
line source

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