From: Youmin Ha Date: Thu, 17 Jan 2013 08:05:54 +0000 (+0900) Subject: scrollview: Fix not selector to respond with jQuery1.8.2 X-Git-Tag: accepted/tizen_2.1/20130425.023924~7^2~204 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cbcb97e4ec2bb3e9498c9d6ce3a8353972c55513;p=platform%2Fframework%2Fweb%2Fweb-ui-fw.git scrollview: Fix not selector to respond with jQuery1.8.2 jQuery1.8.2 does not accept ":not" selector, so the selector is replaced with $.not() function. Change-Id: I6b878d75a23d78e7756eca21acccfaa146f309ca --- diff --git a/src/widgets/common/js/jquery.mobile.tizen.scrollview.js b/src/widgets/common/js/jquery.mobile.tizen.scrollview.js index 4bd7756..713a2e9 100644 --- a/src/widgets/common/js/jquery.mobile.tizen.scrollview.js +++ b/src/widgets/common/js/jquery.mobile.tizen.scrollview.js @@ -1442,7 +1442,7 @@ $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 {