Skip to content
Snippets Groups Projects
Commit 6634a2a8 authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Fix a bug in DiscoJuice that caused problem in Firefox. Wrong parameter name for event object.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2840 44740490-163a-0410-bde0-09ae8108e29a
parent ae4f1a7c
No related branches found
No related tags found
No related merge requests found
......@@ -172,7 +172,7 @@ DiscoJuice.UI = {
if (showmore) {
var moreLink = '<a class="discojuice_showmore textlink" href="">Results limited to ' + show + ' entries – show more…</a>';
this.popup.find("p.discojuice_moreLinkContainer").empty().append(moreLink);
this.popup.find("p.discojuice_moreLinkContainer a.discojuice_showmore").click(function(e) {
this.popup.find("p.discojuice_moreLinkContainer a.discojuice_showmore").click(function(event) {
event.preventDefault();
that.control.increase();
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment