| Index: lib/dom/templates/html/dart2js/impl_MouseEvent.darttemplate
|
| diff --git a/lib/dom/templates/html/dart2js/impl_MouseEvent.darttemplate b/lib/dom/templates/html/dart2js/impl_MouseEvent.darttemplate
|
| index c414fcd5c4790380baaa3d57b7e66619a479f6b2..078b0fa1974cc901caea23c16566405ecfac9c94 100644
|
| --- a/lib/dom/templates/html/dart2js/impl_MouseEvent.darttemplate
|
| +++ b/lib/dom/templates/html/dart2js/impl_MouseEvent.darttemplate
|
| @@ -5,7 +5,7 @@
|
| class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| $!MEMBERS
|
|
|
| - int get offsetX() {
|
| + int get offsetX {
|
| if (JS('bool', '!!this.offsetX')) {
|
| return this._offsetX;
|
| } else {
|
| @@ -19,7 +19,7 @@ $!MEMBERS
|
| }
|
| }
|
|
|
| - int get offsetY() {
|
| + int get offsetY {
|
| if (JS('bool', '!!this.offsetY')) {
|
| return this._offsetY;
|
| } else {
|
| @@ -33,6 +33,6 @@ $!MEMBERS
|
| }
|
| }
|
|
|
| - int get _offsetX() native 'return this.offsetX';
|
| - int get _offsetY() native 'return this.offsetY';
|
| + int get _offsetX native 'return this.offsetX';
|
| + int get _offsetY native 'return this.offsetY';
|
| }
|
|
|