@webqit/webflo 0.9.1 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -103,10 +103,7 @@ export default class RuntimeClient {
|
|
|
103
103
|
} else if (viewportTop = Array.from(document.querySelectorAll('[data-viewport-top]')).pop()) {
|
|
104
104
|
viewportTop.focus();
|
|
105
105
|
} else {
|
|
106
|
-
document.documentElement.classList.add('scroll-reset');
|
|
107
106
|
document.body.scrollIntoView();
|
|
108
|
-
await new Promise(res => setTimeout(res, 600));
|
|
109
|
-
document.documentElement.classList.remove('scroll-reset');
|
|
110
107
|
}
|
|
111
108
|
}
|
|
112
109
|
|