TWEagle / galleriffic

Automatically exported from code.google.com/p/galleriffic
0 stars 0 forks source link

Problem on IE when run Galleriffic with facebox #57

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. try to run Galleriffic with facebox
2. follow the instruction from http://trentacular.com/2009/02/galleriffic-1-0/
onTransitionIn:        function() {
  $('#slideshow').fadeTo('fast', 1.0);
  $('#caption').fadeTo('fast', 1.0);
  $('#caption').fadeIn('fast',
    function() {$('a[rel*=facebox]').facebox();}
  )
},
                    },
3. Not work in IE, but works fine in other browser (FF,Chrome,safari,etc)

What is the expected output? What do you see instead?
the output in should be same as other browser

What version of the product are you using? On what operating system?
jquery 1.3.2, facebox 1.2

Please provide any additional information below.

I've modified the code in galleriffic.js line 455 from
[code]
.append('<span class="image-wrapper"><a class="advance-link" rel="history"
href="#'+this.data[nextIndex].hash+'" title="'+image.alt+'"></a></span>')
[/code] 
to
[code]
.append('<a rel="facebox[.custom]" href="'+image.src+'"
title="'+image.alt+'"></a>')
[code]

for click into the big pic to download the original pic, but seems not
relate to the problem.

Original issue reported on code.google.com by joeckye...@gmail.com on 23 Oct 2009 at 3:34

GoogleCodeExporter commented 9 years ago
Remark:

The IE will crash when I try to apply these 2 things together within a table or 
div tag.
if there is no table or div tag, it works fine in IE

Original comment by joeckye...@gmail.com on 23 Oct 2009 at 4:41