view Platforms/Wasm/WasmDelayedCallExecutor.js @ 609:6729c3fad77e

Added temp download folder to hgignore file
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 30 Apr 2019 07:54:51 +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);
  }
});