scrollview: Fix not selector to respond with jQuery1.8.2
authorYoumin Ha <youmin.ha@samsung.com>
Thu, 17 Jan 2013 08:05:54 +0000 (17:05 +0900)
committerYoumin Ha <youmin.ha@samsung.com>
Thu, 17 Jan 2013 08:50:22 +0000 (17:50 +0900)
jQuery1.8.2 does not accept ":not" selector, so the selector is
replaced with $.not() function.

Change-Id: I6b878d75a23d78e7756eca21acccfaa146f309ca

src/widgets/common/js/jquery.mobile.tizen.scrollview.js

index 4bd7756..713a2e9 100644 (file)
 
                $page.find(".ui-content").attr( "data-scroll", content_scroll );
 
-               $page.find(":jqmData(scroll):not(.ui-scrollview-clip)").each( function () {
+               $page.find(":jqmData(scroll)").not(".ui-scrollview-clip").each( function () {
                        if ( $( this ).hasClass("ui-scrolllistview") ) {
                                $( this ).scrolllistview();
                        } else {