javascript-jquery.mobile.iscroll icon indicating copy to clipboard operation
javascript-jquery.mobile.iscroll copied to clipboard

Doesn't work with latest jquery libraries

Open wolfie1 opened this issue 13 years ago • 2 comments

Doesn't work with http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js.

Can the author comment on what updates are required to get this working? Thanks.

wolfie1 avatar Jul 19 '11 11:07 wolfie1

Doesn't work with collapsible (data-role="collapsible").

Thank.

goffity avatar Jul 27 '11 07:07 goffity

changing the line (99) ...

if ($.mobile.activePage.data("iscroll") == "enable") {

to...

if (($.mobile.activePage) && ($.mobile.activePage.data("iscroll") == "enable")) {

seems to solve the problem

stevegardner avatar Aug 12 '11 11:08 stevegardner