jquery-mobile-simpledialog icon indicating copy to clipboard operation
jquery-mobile-simpledialog copied to clipboard

bugfix for using multiple dialogs parallel

Open ray007 opened this issue 12 years ago • 0 comments

In jquery.mobile.simpledialog2.js, line 338 (function 'destroy'): instead of

$.mobile.sdCurrentDialog.sdIntContent.find('select').each(function() {

you probably meant to write

self.sdIntContent.find('select').each(function() {

otherwise trying to close the 2nd dialog brings an exception and leaves the screen.

ray007 avatar Feb 13 '13 10:02 ray007