DEV: Replace setTimeout with Ember.run.later

Followup to 6fad0463
This commit is contained in:
Penar Musaraj 2020-04-28 14:28:16 -04:00
parent 07e6452759
commit 22f11efad0
1 changed files with 2 additions and 4 deletions

View File

@ -174,14 +174,12 @@ function positioningWorkaround($fixedElement) {
// this tricks iOS safari into assuming input/textarea is at top of the viewport
// via https://stackoverflow.com/questions/38017771/mobile-safari-prevent-scroll-page-when-focus-on-input
_this.style.transform = "translateY(-400px)";
setTimeout(function() {
_this.style.transform = "none";
}, 30);
later(() => (_this.style.transform = "none"), 30);
}
let delay = caps.isIpadOS ? 350 : 150;
setTimeout(function() {
later(function() {
if (caps.isIpadOS && iOSWithVisualViewport()) {
// disable hacks when using a hardware keyboard
// by default, a hardware keyboard will show the keyboard accessory bar