Open GoogleCodeExporter opened 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
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
Original issue reported on code.google.com by
pc.man...@gmail.com
on 1 Sep 2009 at 6:39