OLD | NEW |
1 | 1 |
2 class DeviceOrientationEventJs extends EventJs implements DeviceOrientationEvent
native "*DeviceOrientationEvent" { | 2 class DeviceOrientationEventJs extends EventJs implements DeviceOrientationEvent
native "*DeviceOrientationEvent" { |
3 | 3 |
| 4 bool get absolute() native "return this.absolute;"; |
| 5 |
4 num get alpha() native "return this.alpha;"; | 6 num get alpha() native "return this.alpha;"; |
5 | 7 |
6 num get beta() native "return this.beta;"; | 8 num get beta() native "return this.beta;"; |
7 | 9 |
8 num get gamma() native "return this.gamma;"; | 10 num get gamma() native "return this.gamma;"; |
9 | 11 |
10 void initDeviceOrientationEvent(String type, bool bubbles, bool cancelable, nu
m alpha, num beta, num gamma) native; | 12 void initDeviceOrientationEvent(String type, bool bubbles, bool cancelable, nu
m alpha, num beta, num gamma, bool absolute) native; |
11 } | 13 } |
OLD | NEW |