Popup: reverse orientation bug has been fixed
[platform/framework/web/web-ui-fw.git] / libs / patch / 0005-JQM-IME-hide-when-popup-is-closed.patch
1 From 54ea1ae798681ee684f4419312ff9c35eef2ff3a Mon Sep 17 00:00:00 2001
2 From: "hjnim.kim" <hjnim.kim@samsung.com>
3 Date: Tue, 8 Jan 2013 14:48:57 +0900
4 Subject: [PATCH] JQM IME hide when popup is closed
5
6 libs/js/jquery-mobile-1.2.0/js/widgets/popup.js
7
8 Signed-off-by: hyunjung kim <hjnim.kim@samsung.com>
9 ---
10  libs/js/jquery-mobile-1.2.0/js/widgets/popup.js |    3 +++
11  1 files changed, 3 insertions(+), 0 deletions(-)
12
13 diff --git a/libs/js/jquery-mobile-1.2.0/js/widgets/popup.js b/libs/js/jquery-mobile-1.2.0/js/widgets/popup.js
14 index 87aeffb..f6efab9 100644
15 --- a/libs/js/jquery-mobile-1.2.0/js/widgets/popup.js
16 +++ b/libs/js/jquery-mobile-1.2.0/js/widgets/popup.js
17 @@ -635,6 +635,9 @@ define( [ "jquery",
18  
19                         this._isOpen = false;
20  
21 +                       // IME hide when popup is closed
22 +                       this.element.find("input").blur();
23 +
24                         // Count down to triggering "popupafterclose" - we have two prerequisites:
25                         // 1. The popup window reverse animation completes (container())
26                         // 2. The screen opacity animation completes (screen())
27 -- 
28 1.7.5.4
29