tabbar : prefix to tabbar scroll event
authorJinhyuk Jun <jinhyuk.jun@samsung.com>
Wed, 16 Jan 2013 11:29:32 +0000 (20:29 +0900)
committerYoumin Ha <youmin.ha@samsung.com>
Thu, 17 Jan 2013 08:50:21 +0000 (17:50 +0900)
Change-Id: I65468dcca5638a80484a646e32f24a35c8c48a95

src/widgets/tabbar/js/jquery.mobile.tizen.tabbar.js

index 1a6287f..1c7acdf 100755 (executable)
                                }
                        });
 
-                       $( 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 ),