natashawylie / iviewer

image viewer plugin for jquery
233 stars 97 forks source link

Broken with jQuery 1.9+ #44

Closed ccarns closed 11 years ago

ccarns commented 11 years ago

On line: 123 useIeTransforms = (jQuery.browser.msie && parseInt(jQuery.browser.version, 10) <= 8);

jQuery.browser was removed from jQuery 1.9+ and code needs updated to use http://api.jquery.com/jQuery.support/

can3p commented 11 years ago

It seems that jQuery.support will not help, because iviewer need to check support of ie filters. Right now I don't see how can I detect this without sniffing the browser version.

ccarns commented 11 years ago

Thanks for the fix - much appreciated!