view Platforms/Wasm/WasmDelayedCallExecutor.js @ 862:ff3559c489c9 toa2019062401

Fixed line displayed string
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 24 Jun 2019 15:30:04 +0200
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);
  }
});