Fixed scroll bug
This commit is contained in:
parent
284c638b65
commit
c414e9c33c
@ -469,6 +469,7 @@ angular.module('myApp.directives', ['myApp.filters'])
|
|||||||
atBottom = false;
|
atBottom = false;
|
||||||
} else {
|
} else {
|
||||||
scrollableWrap.scrollTop = scrollableWrap.scrollHeight;
|
scrollableWrap.scrollTop = scrollableWrap.scrollHeight;
|
||||||
|
atBottom = true;
|
||||||
}
|
}
|
||||||
updateScroller();
|
updateScroller();
|
||||||
$timeout(function () {
|
$timeout(function () {
|
||||||
@ -596,7 +597,7 @@ angular.module('myApp.directives', ['myApp.filters'])
|
|||||||
});
|
});
|
||||||
|
|
||||||
function updateSizes (heightOnly) {
|
function updateSizes (heightOnly) {
|
||||||
if (!element.is(':visible') || !$(element[0].parentNode).is(':visible')) {
|
if (!element.is(':visible') && !$(element[0].parentNode.parentNode).is(':visible')) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ($(sendFormWrap).is(':visible')) {
|
if ($(sendFormWrap).is(':visible')) {
|
||||||
|
Loading…
Reference in New Issue
Block a user