Commit dc9a4baf authored by Alexander Yuzhin's avatar Alexander Yuzhin

[SE mobile] Fix bug 34120

parent 986ddd4e
......@@ -89,7 +89,7 @@ define([
].join(''));
var $target = $('#' + _anchorId)
.css({left: posX, top: posY});
.css({left: posX, top: Math.max(0, posY)});
uiApp.closeModal('.document-menu.modal-in');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment