Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
igoroctaviano committed Nov 1, 2024
1 parent 38f5187 commit d2a7c71
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/viewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1472,12 +1472,12 @@ class VolumeImageViewer {
})

this[_map].on('movestart', (event) => {
publish(this[_map].getTargetElement(), EVENT.MOVE_STARTED, { event });
});
publish(this[_map].getTargetElement(), EVENT.MOVE_STARTED, { event })
})

this[_map].on('moveend', (event) => {
publish(this[_map].getTargetElement(), EVENT.MOVE_ENDED, { event });
});
publish(this[_map].getTargetElement(), EVENT.MOVE_ENDED, { event })
})

let clickEvent = null

Expand Down Expand Up @@ -5295,12 +5295,12 @@ class _NonVolumeImageViewer {
})

this[_map].on('movestart', (event) => {
publish(this[_map].getTargetElement(), EVENT.MOVE_STARTED, { event });
});
publish(this[_map].getTargetElement(), EVENT.MOVE_STARTED, { event })
})

this[_map].on('moveend', (event) => {
publish(this[_map].getTargetElement(), EVENT.MOVE_ENDED, { event });
});
publish(this[_map].getTargetElement(), EVENT.MOVE_ENDED, { event })
})

view.fit(projection.getExtent(), { size: this[_map].getSize() })
}
Expand Down

0 comments on commit d2a7c71

Please sign in to comment.