From be86739d069f34fee0267f6b8b328d184d90657a Mon Sep 17 00:00:00 2001 From: Jinhyuk Jun Date: Wed, 16 Jan 2013 20:29:32 +0900 Subject: [PATCH] tabbar : prefix to tabbar scroll event Change-Id: I65468dcca5638a80484a646e32f24a35c8c48a95 --- src/widgets/tabbar/js/jquery.mobile.tizen.tabbar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/tabbar/js/jquery.mobile.tizen.tabbar.js b/src/widgets/tabbar/js/jquery.mobile.tizen.tabbar.js index 1a6287f..1c7acdf 100755 --- a/src/widgets/tabbar/js/jquery.mobile.tizen.tabbar.js +++ b/src/widgets/tabbar/js/jquery.mobile.tizen.tabbar.js @@ -185,14 +185,14 @@ } }); - $( window ).bind( "scrollstart", function ( e ) { + $( window ).bind( "tabbar.scrollstart", function ( e ) { if ( $( e.target ).find( ".ui-tabbar" ).length ) { isScrollingStart = true; isScrollingEnd = false; } }); - $( window ).bind( "scrollstop", function ( e ) { + $( window ).bind( "tabbar.scrollstop", function ( e ) { var $tabbarScrollview = $( e.target ), $minElement = $tabbar.find( "li" ).eq( 0 ), minElementIndexVal = Math.abs( $tabbar.find( "li" ).eq( 0 ).offset().left ), -- 2.7.4