зеркало из https://github.com/mozilla/gecko-dev.git
Bug 895174 - defect - not able to scroll list of recent history in snap view r=mbrubeck
--HG-- extra : rebase_source : 8b30ed307f7a91c7610a03613fd53ad627a398a0
This commit is contained in:
Родитель
9a7343f87e
Коммит
15523b3c5f
|
@ -1200,7 +1200,11 @@ var StartUI = {
|
|||
let startBox = document.getElementById("start-scrollbox");
|
||||
let [, scrollInterface] = ScrollUtils.getScrollboxFromElement(startBox);
|
||||
|
||||
scrollInterface.scrollBy(aEvent.detail, 0);
|
||||
if (Elements.windowState.getAttribute("viewstate") == "snapped") {
|
||||
scrollInterface.scrollBy(0, aEvent.detail);
|
||||
} else {
|
||||
scrollInterface.scrollBy(aEvent.detail, 0);
|
||||
}
|
||||
|
||||
aEvent.preventDefault();
|
||||
aEvent.stopPropagation();
|
||||
|
|
Загрузка…
Ссылка в новой задаче