Commit 5563df15 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Делаем принудительный scroll в '0', чтобы не было анимаций при открытии списка...

Делаем принудительный scroll в '0', чтобы не было анимаций при открытии списка с меньшим числом вариантов (для PopUpSelector).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56051 954022d7-b5bf-4e40-9824-e11837661b57
parent 52a25af5
......@@ -132,6 +132,9 @@
};
PopUpSelector.prototype.hide = function () {
if (this.isVisible) {
// Чтобы не было непонятных анимаций
this.selectorListJQ.scrollTop(0);
this.selectorStyle.display = "none";
this.isVisible = false;
......
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