rvera / image-picker

Image Picker is a simple jQuery plugin that transforms a select element into a more user friendly graphical interface.
http://rvera.github.com/image-picker
Other
906 stars 216 forks source link

Issue causing image-picker not to work in IE7 and IE8 #3

Closed marcokam closed 11 years ago

marcokam commented 11 years ago

In your image-picker.js file, this line here:

this.picker = $("<ul class='thumbnails image_picker_selector'></div>");

seems to break IE7 and IE8.

Changed to:

this.picker = $("<ul class='thumbnails image_picker_selector'></ul>");

and seems to fix the issue.

rvera commented 11 years ago

Thank you, I pushed the update with the fix.