Popup: Apply tizen style popup and attribute support
[platform/framework/web/web-ui-fw.git] / libs / patch / jqm-1.1.0 / 0023-JQM-checkbox-set-focus-when-click-the-checkbox.patch
1 From cde0eff7f9903134b8f097c8c08069ccc65c1ae8 Mon Sep 17 00:00:00 2001
2 From: Minkyu Kang <mk7.kang@samsung.com>
3 Date: Wed, 14 Nov 2012 14:24:31 +0900
4 Subject: [PATCH] JQM: checkbox: set focus when click the checkbox
5
6 Change-Id: Id0e8cb7c177a03f98611fdc0dc2046f4bfacefa0
7 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8 ---
9  .../js/jquery.mobile.forms.checkboxradio.js        |    1 +
10  1 file changed, 1 insertion(+)
11
12 diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.checkboxradio.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.checkboxradio.js
13 index 08556cf..60bcb38 100644
14 --- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.checkboxradio.js
15 +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.checkboxradio.js
16 @@ -175,6 +175,7 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, {
17                         if ( this.checked || self.inputtype === "checkbox" ) {
18                                 $this.trigger( "change" );
19                         }
20 +                       $this.focus();
21                 })
22                 .checkboxradio( "refresh" );
23         },
24 -- 
25 1.7.9.5
26