OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 class $CLASSNAME extends $SUPER implements $INTERFACE { |
| 6 $CLASSNAME(_ptr) : super(_ptr); |
| 7 $!MEMBERS |
| 8 EventListenerList get mouseWheel { |
| 9 if (JS('bool', '#.onwheel !== undefined', _ptr)) { |
| 10 // W3C spec, and should be IE9+, but IE has a bug exposing onwheel. |
| 11 return this['wheel']; |
| 12 } else if (JS('bool', '#.onmousewheel !== undefined', _ptr)) { |
| 13 // Chrome & IE |
| 14 return this['mousewheel']; |
| 15 } else { |
| 16 // Firefox |
| 17 return this['DOMMouseScroll']; |
| 18 } |
| 19 } |
| 20 } |
OLD | NEW |