Skip to content

Commit

Permalink
Fix validation report (thx Mr. Goldy)
Browse files Browse the repository at this point in the history
  • Loading branch information
3D-I committed Feb 8, 2018
1 parent 0312858 commit c282413
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions styles/all/template/prime_bbcode_note.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ function show_note(icon_obj)
if (close_icon)
{
close_icon.style.display = (bubble.lock ? 'block' : 'none');
close_icon.style.left = '-5px'; // REMOVED FROM HERE
close_icon.style.left = '-5px';
}
bubble.obj.style.top = ((position[1] - position[3]) + 5 - ((navigator.appName == 'Microsoft Internet Explorer') ? 0 : 5)) + 'px';
bubble.obj.style.left = (position[0] + position[2] + 4) + 'px'; // REMOVED FROM HERE
bubble.obj.style.paddingLeft = 0; // REMOVED FROM HERE (HAS TO BE 0!)
bubble.obj.style.paddingBottom = 0; // CAN NOT REMOVE THE ENTIRE LINE
bubble.obj.style.left = (position[0] + position[2] + 4) + 'px';
bubble.obj.style.paddingLeft = 0;
bubble.obj.style.paddingBottom = 0;
bubble.obj.style.display = "block";
icon_obj.title = "";
}
Expand Down

0 comments on commit c282413

Please sign in to comment.