fix(scrollView): fix clonedInputs not being removed for large textareas

on keyboardshow

Closes #1420.
This commit is contained in:
Tim Lancina
2014-05-20 13:04:32 -05:00
parent 4a57bd0229
commit 88e41e1aa5

View File

@@ -671,9 +671,12 @@ ionic.views.Scroll = ionic.views.View.inherit({
var elementTopOffsetToScrollBottom = e.detail.elementTop - scrollBottomOffsetToTop;
var scrollTop = elementTopOffsetToScrollBottom + scrollMidpointOffset;
ionic.tap.cloneFocusedInput(container, self);
self.scrollBy(0, scrollTop, true);
self.onScroll();
if (scrollTop > 0){
ionic.tap.cloneFocusedInput(container, self);
self.scrollBy(0, scrollTop, true);
self.onScroll();
}
}, delay);
}