File tree 2 files changed +5
-0
lines changed
src/main/scala/org/scalajs/dom/raw
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -398,6 +398,8 @@ abstract class HTMLDocument extends Document {
398
398
399
399
var onmousewheel : js.Function1 [WheelEvent , _] = js.native
400
400
401
+ var onwheel : js.Function1 [WheelEvent , _] = js.native
402
+
401
403
var onscroll : js.Function1 [UIEvent , _] = js.native
402
404
403
405
/**
@@ -3396,6 +3398,7 @@ abstract class HTMLElement extends Element {
3396
3398
var onmouseout : js.Function1 [MouseEvent , _] = js.native
3397
3399
var parentElement : HTMLElement = js.native
3398
3400
var onmousewheel : js.Function1 [WheelEvent , _] = js.native
3401
+ var onwheel : js.Function1 [WheelEvent , _] = js.native
3399
3402
var onvolumechange : js.Function1 [Event , _] = js.native
3400
3403
var filters : Object = js.native
3401
3404
Original file line number Diff line number Diff line change @@ -2468,6 +2468,8 @@ class Window
2468
2468
2469
2469
var onmousewheel : js.Function1 [WheelEvent , _] = js.native
2470
2470
2471
+ var onwheel : js.Function1 [WheelEvent , _] = js.native
2472
+
2471
2473
/**
2472
2474
* An event handler property for window loading.
2473
2475
*
You can’t perform that action at this time.
0 commit comments