deltaMode property - WheelEvent class - dart:html library (original) (raw)
int getdeltaMode
Implementation
int get deltaMode {
if (JS('bool', '!!(#.deltaMode)', this)) {
return JS('int', '#.deltaMode', this);
}
// If not available then we're poly-filling and doing pixel scroll.
return 0;
}