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:
Rodrigo Silveira 2013-07-19 16:59:58 -07:00
Родитель 9a7343f87e
Коммит 15523b3c5f
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -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();