mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 13:53:31 +03:00
fixed navigator setvisible️ (fixed indentation)
Signed-off-by: Rahul Chaudhari_ <rahulgc545@gmail.com>
This commit is contained in:
parent
56d0d982da
commit
de277a7b42
1 changed files with 31 additions and 0 deletions
|
@ -324,6 +324,37 @@ $.extend( $.Navigator.prototype, $.EventSource.prototype, $.Viewer.prototype, /*
|
|||
this.updateSize();
|
||||
},
|
||||
|
||||
/**
|
||||
* Controls the visibility of the navigator element.
|
||||
* This method hides or shows the entire navigator, including its background and borders.
|
||||
* @function
|
||||
* @param {Boolean} visible - True to show the navigator, false to hide it.
|
||||
*/
|
||||
setVisible: function (visible) {
|
||||
if (this.element) {
|
||||
// Only proceed if there's a valid element to control
|
||||
if (visible) {
|
||||
// Show the navigator element
|
||||
this.element.style.display = "block";
|
||||
if (this.viewport) {
|
||||
// Update the viewport and ensure constraints are applied
|
||||
this.viewport.goHome(true);
|
||||
this.world.update();
|
||||
this.world.draw();
|
||||
this.update(this.viewer.viewport);
|
||||
}
|
||||
} else {
|
||||
// Hide the navigator element
|
||||
this.element.style.display = "none";
|
||||
}
|
||||
} else {
|
||||
// Log a warning if the navigator element is missing
|
||||
$.console.warn(
|
||||
"Navigator element not found. Unable to set visibility."
|
||||
);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Explicitly sets the height of the navigator, in web coordinates. Disables automatic resizing.
|
||||
* @param {Number|String} height - the new height, either a number of pixels or a CSS string, such as "100%"
|
||||
|
|
Loading…
Add table
Reference in a new issue