Merge branch 'master' into tizen_2.1
authorhjnim.kim <hjnim.kim@samsung.com>
Fri, 3 May 2013 06:37:08 +0000 (15:37 +0900)
committerhjnim.kim <hjnim.kim@samsung.com>
Fri, 3 May 2013 06:37:29 +0000 (15:37 +0900)
Change-Id: Ib39c2e5103d8e61bc6251d9987863a7a12720676

demos/tizen-winsets/widgets/radio/radio.js
src/js/widgets/jquery.mobile.tizen.tokentextarea.js [changed mode: 0755->0644]

index 3498bae..2c97312 100644 (file)
@@ -1,8 +1,7 @@
-$( document ).one( "pagecreate", "#radio-demo", function () {
-       $("input[type='radio']").on( "change", function (event, ui) {
-               if ( this.checked ) {
+$( "#radio-demo" ).live("pagecreate", function () {
+       $("input[type='radio']").bind( "change", function(event, ui) {
+               if( this.checked )
                        $( ".triggered-radio" ).text( this.id + " is selected..." );
-               }
        });
 
 });