File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ sealed trait ScrollRestoration extends js.Any
10
10
* which contains the spec for ScrollRestoration
11
11
*/
12
12
object ScrollRestoration {
13
+ /** The location on the page to which the user has scrolled will be restored. */
13
14
val auto : ScrollRestoration = " auto" .asInstanceOf [ScrollRestoration ]
15
+ /** The location on the page is not restored. The user will have to scroll to the location manually. */
14
16
val manual : ScrollRestoration = " manual" .asInstanceOf [ScrollRestoration ]
15
- }
17
+ }
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ object ScrollRestoration {
13
13
val auto : ScrollRestoration = " auto"
14
14
/** The location on the page is not restored. The user will have to scroll to the location manually. */
15
15
val manual : ScrollRestoration = " manual"
16
- }
16
+ }
You can’t perform that action at this time.
0 commit comments