OLD | NEW |
1 | 1 |
2 class SVGZoomEventJs extends UIEventJs implements SVGZoomEvent native "*SVGZoomE
vent" { | 2 class _SVGZoomEventJs extends _UIEventJs implements SVGZoomEvent native "*SVGZoo
mEvent" { |
3 | 3 |
4 num get newScale() native "return this.newScale;"; | 4 num get newScale() native "return this.newScale;"; |
5 | 5 |
6 SVGPointJs get newTranslate() native "return this.newTranslate;"; | 6 _SVGPointJs get newTranslate() native "return this.newTranslate;"; |
7 | 7 |
8 num get previousScale() native "return this.previousScale;"; | 8 num get previousScale() native "return this.previousScale;"; |
9 | 9 |
10 SVGPointJs get previousTranslate() native "return this.previousTranslate;"; | 10 _SVGPointJs get previousTranslate() native "return this.previousTranslate;"; |
11 | 11 |
12 SVGRectJs get zoomRectScreen() native "return this.zoomRectScreen;"; | 12 _SVGRectJs get zoomRectScreen() native "return this.zoomRectScreen;"; |
13 } | 13 } |
OLD | NEW |