# HG changeset patch # User Sebastien Jodogne # Date 1521734628 -3600 # Node ID 4b9da483ae4d522230ae7fe4bf5ac5fdf5fb8166 # Parent ab66a6baf2ae990096bdbea7257342eddc9ceb16 Disable pinch zoom on mobile devices diff -r ab66a6baf2ae -r 4b9da483ae4d NEWS --- a/NEWS Thu Mar 22 16:59:06 2018 +0100 +++ b/NEWS Thu Mar 22 17:03:48 2018 +0100 @@ -1,6 +1,7 @@ Pending changes in the mainline =============================== +* Disable pinch zoom on mobile devices * Fix download of DICOM instance from the toolbox * Fix for Osimis issue WVB-319: Some images are not loading in US_MF * Support of rendering RGB48 lookup tables (palette), if Orthanc SDK >= 1.3.1 diff -r ab66a6baf2ae -r 4b9da483ae4d WebApplication/viewer.css --- a/WebApplication/viewer.css Thu Mar 22 16:59:06 2018 +0100 +++ b/WebApplication/viewer.css Thu Mar 22 17:03:48 2018 +0100 @@ -1,3 +1,12 @@ +html, body { + width: 100%; + height: 100%; + margin: 0px; + border: 0; + overflow: hidden; /* Disable scrollbars */ + display: block; /* No floating content on sides */ +} + .jsPanel-hdr-r { display: none; } diff -r ab66a6baf2ae -r 4b9da483ae4d WebApplication/viewer.html --- a/WebApplication/viewer.html Thu Mar 22 16:59:06 2018 +0100 +++ b/WebApplication/viewer.html Thu Mar 22 17:03:48 2018 +0100 @@ -3,6 +3,11 @@ + + + + + Orthanc Web Viewer