From 337af91373148444252833f1562899a6939209f1 Mon Sep 17 00:00:00 2001 From: Benny Lichtner Date: Thu, 30 Jan 2025 14:45:30 +0100 Subject: [PATCH 1/2] Update viewer.addOverlay doc Mention the preserveOverlays option --- src/viewer.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/viewer.js b/src/viewer.js index e8a373f3..17befc5f 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -2222,8 +2222,9 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, /** * Adds an html element as an overlay to the current viewport. Useful for * highlighting words or areas of interest on an image or other zoomable - * interface. The overlays added via this method are removed when the viewport - * is closed which include when changing page. + * interface. Unless the viewer has been configured with the preserveOverlays + * option, overlays added via this method are removed when the viewport + * is closed (including in sequence mode when changing page). * @method * @param {Element|String|Object} element - A reference to an element or an id for * the element which will be overlaid. Or an Object specifying the configuration for the overlay. From 138215e22f3d370ffded2c88ff1eccdddb58e046 Mon Sep 17 00:00:00 2001 From: Benny Lichtner Date: Thu, 30 Jan 2025 20:12:05 +0100 Subject: [PATCH 2/2] delete trailing whitepsace --- src/viewer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/viewer.js b/src/viewer.js index 17befc5f..5d2d52bc 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -2222,7 +2222,7 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, /** * Adds an html element as an overlay to the current viewport. Useful for * highlighting words or areas of interest on an image or other zoomable - * interface. Unless the viewer has been configured with the preserveOverlays + * interface. Unless the viewer has been configured with the preserveOverlays * option, overlays added via this method are removed when the viewport * is closed (including in sequence mode when changing page). * @method