From 5ad395d59983968c7656a9260e7afa74b0897ea4 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Mon, 12 May 2014 15:15:36 -0500 Subject: [PATCH] only wait longer for keyboard resize on android --- js/views/scrollView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/views/scrollView.js b/js/views/scrollView.js index b17517396e..230312ddd8 100644 --- a/js/views/scrollView.js +++ b/js/views/scrollView.js @@ -643,7 +643,7 @@ ionic.views.Scroll = ionic.views.View.inherit({ if( e.detail.isElementUnderKeyboard ) { var delay; // Wait on android for scroll view to resize - if ( !ionic.Platform.isFullScreen && e.detail.hasPlugin ) { + if ( ionic.Platform.isAndroid() && !ionic.Platform.isFullScreen ) { delay = 350; } else {