Prevent dialog top from going past top of screen.

This commit is contained in:
Austin Matzko 2014-02-12 23:52:41 -05:00
Родитель 1feb2a504a
Коммит fb258ba6c9
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -15,6 +15,9 @@ var dialogPolyfill = (function() {
document.body.clientHeight :
window.innerHeight,
topValue = scrollTop + (windowHeight - element.offsetHeight) / 2;
if (0 > topValue) {
topValue = 0;
}
element.style.top = topValue + 'px';
element.dialogPolyfillInfo.isTopOverridden = true;
};