TWEagle / galleriffic

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

IE bug, change image #23

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. IE7 Bug, when you change image, i got an error

jquery error, i have tryed alle version from v1.2.6, to v1.3.2, but a ie
bug, in the jQuery script, i know it's not here, i have to post it, but,
it's the firs place, where i have see this bug

Original issue reported on code.google.com by pc.man...@gmail.com on 1 Sep 2009 at 6:39

GoogleCodeExporter commented 9 years ago
Hi,

I tried to use it on ie7 and it not work totally as the link next and previous 
not
work also if one press on any thumbs not work.

I put it on my site and the thumbs list displayed as ordinary list not 
horizontal as
expected.

are any have a solution.

my mail (mrmalaa.2@gmail.com)

Thanks in advance.

Original comment by mrmala...@gmail.com on 4 Dec 2009 at 8:41

GoogleCodeExporter commented 9 years ago
I have the same issue.    The error refers to following block of code:

                // PageLoad function
                // This function is called when:
                // 1. after calling $.historyInit();
                // 2. after calling $.historyLoad();
                // 3. after pushing "Go Back" button of a browser
                function pageload(hash) {
                    // alert("pageload: " + hash);
                    // hash doesn't contain the first # character.
                    if(hash) {
                        $.galleriffic.gotoImage(hash);
                    } else {
                        gallery.gotoIndex(0);
                    }
                }

                // Initialize history plugin.
                // The callback is called at once by present location.hash. 
                $.historyInit(pageload, "advanced.html");

                // set onlick event for buttons using the jQuery 1.3 live method
                $("a[rel='history']").live('click', function() {
                    if (e.button != 0) return true;

                    var hash = this.href;
                    hash = hash.replace(/^.*#/, '');

                    // moves to a new page. 
                    // pageload is called at once. 
                    // hash don't contain "#", "?"
                    $.historyLoad(hash);

                    return false;
                });

                /****************************************************************************************/

Any ideas on what the issue is or how to solve it temporarily?

Original comment by utopia...@gmail.com on 12 Feb 2012 at 12:45