mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 22:03:31 +03:00
Explicitly bind 'this' to the Viewer instance
This commit is contained in:
parent
3550dfafd3
commit
2e3f0923f5
1 changed files with 5 additions and 5 deletions
|
@ -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);
|
||||
},
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue