From cbcb97e4ec2bb3e9498c9d6ce3a8353972c55513 Mon Sep 17 00:00:00 2001 From: Youmin Ha Date: Thu, 17 Jan 2013 17:05:54 +0900 Subject: [PATCH] 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 --- src/widgets/common/js/jquery.mobile.tizen.scrollview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.7.4