Merge pull request #2358 from Pistos/issue-2353-ie-photo-zoom
IE: Open images in a new tab, no lightbox
This commit is contained in:
commit
0f9e82eea1
1 changed files with 9 additions and 3 deletions
|
|
@ -94,6 +94,12 @@ jQuery.fn.center = (function() {
|
|||
images = selectedImage.parents('.stream_element').find('img.stream-photo'),
|
||||
imageThumb;
|
||||
|
||||
if( $.browser.msie ) {
|
||||
/* No fancy schmancy lightbox for IE, because it doesn't work in IE */
|
||||
window.open(imageUrl);
|
||||
return;
|
||||
}
|
||||
|
||||
self.imageset.html("");
|
||||
images.each(function(index, image) {
|
||||
image = $(image);
|
||||
|
|
|
|||
Loading…
Reference in a new issue