Skip to content
This repository was archived by the owner on Jul 25, 2018. It is now read-only.

Commit 2eac26b

Browse files
author
Michael Kelly
committed
Fix bug 699733: Fix tooltip JS.
1 parent 0c3f931 commit 2eac26b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

media/js/affiliates.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@
5757

5858
// Show and hide the target on hover.
5959
$(".show_tooltip").hover(
60-
function(e){
61-
$($(this).attr('target')).show();
60+
function (e){
61+
$('#' + $(this).attr('target')).show();
6262
},
63-
function(e){
64-
$($(this).attr('target')).hide();
63+
function (e){
64+
$('#' + $(this).attr('target')).hide();
6565
}
6666
);
6767

0 commit comments

Comments
 (0)