Skip to content

Commit

Permalink
Fix: Cursor type (skin.js)
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorA100 committed May 27, 2024
1 parent 166716e commit eaaa9bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/skins/classic/js/skin.js
Original file line number Diff line number Diff line change
Expand Up @@ -1220,7 +1220,7 @@ var zmPanZoom = {
step: this.panZoomStep,
maxScale: this.panZoomMaxScale,
contain: 'outside',
cursor: 'auto',
cursor: 'inherit',
});
//panZoom[id].pan(10, 10);
//panZoom[id].zoom(1, {animate: true});
Expand Down Expand Up @@ -1281,7 +1281,7 @@ var zmPanZoom = {
if (obj) { //Montage & Watch page
obj_btn = document.getElementById('button_zoom'+id); //Change the cursor when you hover over the block of buttons at the top of the image. Not required on Event page
} else { //Event page
obj = document.getElementById('evtStream');
obj = document.getElementById('videoFeedStream'+id);
}
const currentScale = this.panZoom[id].getScale().toFixed(1);
if (this.shifted && this.ctrled) {
Expand Down

0 comments on commit eaaa9bf

Please sign in to comment.