File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/main/scala/org/scalajs/dom Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2253,31 +2253,31 @@ class Touch extends js.Object {
2253
2253
*
2254
2254
* MDN
2255
2255
*/
2256
- def screenX : Int = ???
2256
+ def screenX : Double = ???
2257
2257
2258
2258
/**
2259
2259
* The Y coordinate of the touch point relative to the top edge of the screen.
2260
2260
* Read only.
2261
2261
*
2262
2262
* MDN
2263
2263
*/
2264
- def screenY : Int = ???
2264
+ def screenY : Double = ???
2265
2265
2266
2266
/**
2267
2267
* The X coordinate of the touch point relative to the left edge of the browser viewport,
2268
2268
* not including any scroll offset. Read only.
2269
2269
*
2270
2270
* MDN
2271
2271
*/
2272
- def clientX : Int = ???
2272
+ def clientX : Double = ???
2273
2273
2274
2274
/**
2275
2275
* The Y coordinate of the touch point relative to the top edge of the browser viewport,
2276
2276
* not including any scroll offset. Read only.
2277
2277
*
2278
2278
* MDN
2279
2279
*/
2280
- def clientY : Int = ???
2280
+ def clientY : Double = ???
2281
2281
2282
2282
/**
2283
2283
* The X coordinate of the touch point relative to the left edge of the document. Unlike clientX,
@@ -2286,7 +2286,7 @@ class Touch extends js.Object {
2286
2286
* MDN
2287
2287
* Read only.
2288
2288
*/
2289
- def pageX : Int = ???
2289
+ def pageX : Double = ???
2290
2290
2291
2291
/**
2292
2292
* The Y coordinate of the touch point relative to the top of the document. Unlike clientY, this value
@@ -2295,7 +2295,7 @@ class Touch extends js.Object {
2295
2295
*
2296
2296
* MDN
2297
2297
*/
2298
- def pageY : Int = ???
2298
+ def pageY : Double = ???
2299
2299
2300
2300
/**
2301
2301
* The X radius of the ellipse that most closely circumscribes the area of contact with the screen.
You can’t perform that action at this time.
0 commit comments