# HG changeset patch # User Alain Mazy # Date 1552921267 -3600 # Node ID 1c5104a6f7e430f61b42ec1f6b8ae41105770b3c # Parent 548eed46f535a740a230a828c3be96c9127ab2b3 fix warning for preventDefault diff -r 548eed46f535 -r 1c5104a6f7e4 Platforms/Wasm/wasm-application-runner.ts --- a/Platforms/Wasm/wasm-application-runner.ts Thu Mar 14 19:04:35 2019 +0100 +++ b/Platforms/Wasm/wasm-application-runner.ts Mon Mar 18 16:01:07 2019 +0100 @@ -109,7 +109,7 @@ // Prevent scrolling document.body.addEventListener('touchmove', function (event) { event.preventDefault(); - }, false); + }, { passive: false}); _InitializeWasmApplication(orthancBaseUrl); });