From 0e46c8184bfe1bb51c95be0218accc29c0ad802e Mon Sep 17 00:00:00 2001 From: Matt Seddon Date: Sun, 13 Sep 2015 11:42:39 +0100 Subject: [PATCH] Fix Touch identifier to be Double --- src/main/scala/org/scalajs/dom/raw/lib.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/org/scalajs/dom/raw/lib.scala b/src/main/scala/org/scalajs/dom/raw/lib.scala index 9c8efa6dc..491f213fd 100644 --- a/src/main/scala/org/scalajs/dom/raw/lib.scala +++ b/src/main/scala/org/scalajs/dom/raw/lib.scala @@ -2586,7 +2586,7 @@ class Touch extends js.Object { * * MDN */ - def identifier: Int = js.native + def identifier: Double = js.native /** * The X coordinate of the touch point relative to the left edge of the screen.