From 2e3f0923f5c61a9d609e06568f4bb21eec902f91 Mon Sep 17 00:00:00 2001 From: achu1998 Date: Sat, 29 Mar 2025 14:17:54 +1030 Subject: [PATCH] Explicitly bind 'this' to the Viewer instance --- src/viewer.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/viewer.js b/src/viewer.js index 059f326d..3c6d3b62 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -2632,7 +2632,7 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, * @memberof OpenSeadragon.Viewer.prototype */ startZoomInNavButton: function () { - beginZoomingIn(); + beginZoomingIn.call(this); }, /** @@ -2641,7 +2641,7 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, * @memberof OpenSeadragon.Viewer.prototype */ startZoomOutNavButton: function () { - beginZoomingOut(); + beginZoomingOut.call(this); }, /** @@ -2650,7 +2650,7 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, * @memberof OpenSeadragon.Viewer.prototype */ endZoomNavButton: function () { - endZooming(); + endZooming.call(this); }, /** @@ -2659,7 +2659,7 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, * @memberof OpenSeadragon.Viewer.prototype */ zoomInNavButton: function () { - doSingleZoomIn(); + doSingleZoomIn.call(this); }, /** @@ -2668,7 +2668,7 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, * @memberof OpenSeadragon.Viewer.prototype */ zoomOutNavButton: function () { - doSingleZoomOut(); + doSingleZoomOut.call(this); }, });