-
```
It would be nice to be able to do something like this:
base2.use("DOM");
base2.use("DOM.extras.scrollIntoView");
base2.use("JSB");
Dojo allows lazy loading like this. It's a very cool feature.
…
-
```
It would be nice to be able to do something like this:
base2.use("DOM");
base2.use("DOM.extras.scrollIntoView");
base2.use("JSB");
Dojo allows lazy loading like this. It's a very cool feature.
…
-
I found that the code prefers HTMLElement to Element:
https://github.com/iamdustan/smoothscroll/blob/8a19e81e17ba39efed1c8b48c7976e3702238105/src/smoothscroll.js#L18
...and causes adding `scroll…
-
### Describe the bug
`ScrollIntoView(itemsControl.Items.Count - 1)` can not work as expected,
while `scrollViewer?.ScrollToEnd();` can work well.
### To Reproduce
```csharp
// not work
…
-
window.document.getElementsByClassName('ant-table-tbody')[0].getElementsByClassName('ant-table-row-level-0')[0].scrollIntoView('smooth');//scroll to the first row (adding new row when in the middle of…
-
The scroll-snap-2 [spec](https://drafts.csswg.org/css-scroll-snap-2/#propdef-scroll-start-target) lets authors specify "none" or "auto" for scroll-start-target.
Would it be more useful to allow autho…
-
### Current behavior
ListView.ScrollIntoView never stops scrolling when ItemsSource been set to more than 100 items.
I have ItemsSource as List
and
-
在包含上拉加载、下拉刷新控件的页面加载完成后,调用列表中某一元素的scrollIntoView()方法,则列表无法上拉,而且下拉时下方会出现一片空白区域
![image](https://user-images.githubusercontent.com/16459239/34241662-05e9c45c-e652-11e7-9c12-987911975d57.png)
![image]…
-
Ported app from UIWebView and long textarea elements are now hidden under keyboard because textarea no longer responds to `scrollIntoView(false)`. Suspect Ionic Stop Scroll is blocking this function. …
-
```
setTimeout(function() {
document.getElementById('characterList').scrollIntoView();
}, 2000);
```
is there a reason why we wait 2 seconds for the page to …