Skip to content

Commit

Permalink
Merge pull request #127 from e-task/master
Browse files Browse the repository at this point in the history
Fix to make zoom by mousewheel working in Mozilla Firefox and Microsoft Internet Explorer / Microsoft Edge
  • Loading branch information
rubendel committed Jan 22, 2016
2 parents 7eddb18 + 4e93202 commit 95919a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/Control/PickFlyOrbit.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ BIMSURFER.Control.PickFlyOrbit = BIMSURFER.Class(BIMSURFER.Control, {
*/
mouseWheel: function(e) {
var delta = 0;
event = e;
var event = e;
if (event.wheelDelta) {
delta = event.wheelDelta / 120;
if (window.opera) {
Expand Down

0 comments on commit 95919a3

Please sign in to comment.