| Index: tools/dom/templates/html/impl/impl_Touch.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Touch.darttemplate b/tools/dom/templates/html/impl/impl_Touch.darttemplate
|
| index 889485d9e363221ae8fbe65fdc3e1889a8320589..a23e2f59f488521cfb8dca676e4d97a744667ae5 100644
|
| --- a/tools/dom/templates/html/impl/impl_Touch.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Touch.darttemplate
|
| @@ -32,15 +32,15 @@ $endif
|
|
|
| @DomName('Touch.clientX')
|
| @DomName('Touch.clientY')
|
| - Point get client => new Point(__clientX, __clientY);
|
| + Point get client => new Point/*<num>*/(__clientX, __clientY);
|
|
|
| @DomName('Touch.pageX')
|
| @DomName('Touch.pageY')
|
| - Point get page => new Point(__pageX, __pageY);
|
| + Point get page => new Point/*<num>*/(__pageX, __pageY);
|
|
|
| @DomName('Touch.screenX')
|
| @DomName('Touch.screenY')
|
| - Point get screen => new Point(__screenX, __screenY);
|
| + Point get screen => new Point/*<num>*/(__screenX, __screenY);
|
|
|
| @DomName('Touch.radiusX')
|
| @DocsEditable()
|
|
|