view Platforms/Wasm/WasmDelayedCallExecutor.js @ 608:357e744c56cc

Removed MSVC specific code (option already available thru Orthanc cmake)
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 30 Apr 2019 07:54:01 +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);
  }
});