view Platforms/Wasm/WasmDelayedCallExecutor.js @ 521:6c745c59eea3 am-touch-events

hgignore
author amazy
date Tue, 12 Mar 2019 14:53:38 +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);
  }
});