We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 567c1e3 commit a64b7c2Copy full SHA for a64b7c2
dom/src/main/scala-3/org/scalajs/dom/ScrollRestoration.scala
@@ -9,6 +9,8 @@ opaque type ScrollRestoration <: String = String
9
* which contains the spec for ScrollRestoration
10
*/
11
object ScrollRestoration {
12
+ /** The location on the page to which the user has scrolled will be restored. */
13
val auto: ScrollRestoration = "auto"
14
+ /** The location on the page is not restored. The user will have to scroll to the location manually. */
15
val manual: ScrollRestoration = "manual"
16
}
0 commit comments