view Platforms/Wasm/WasmDelayedCallExecutor.js @ 512:72faa732532b bgo-commands-codegen

removed <optional> include which seems not used and is not availble with VS2015
author Alain Mazy <alain@mazy.be>
date Fri, 08 Mar 2019 18:34:26 +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);
  }
});