Skip to content

Commit

Permalink
Merge pull request #1139 from 2Abendsegler/show_overflowed_username
Browse files Browse the repository at this point in the history
Show an overflowed username in a cache listing log when hovering overwith the mouse. #1138
  • Loading branch information
2Abendsegler authored Dec 18, 2019
2 parents 4a719fb + 63a22ee commit d9cfa4a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gc_little_helper_II.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -7174,6 +7174,12 @@ var mainGC = function() {
var owner = get_real_owner();
setLinesColorInZebra(settings_show_cache_listings_in_zebra, lines, 1);
setLinesColorUser("settings_show_cache_listings_color", "user,owner,reviewer,vips", lines, 1, owner);
// Show an overflowed username in a cache listing log when hovering over with the mouse.
$('.logOwnerProfileName').each(function() {
if (window.getComputedStyle(this).width == '135px') {
this.setAttribute('title', $(this).find('a')[0].innerHTML);
}
});
}
}
// Bei Click auf VIP Icon, Einfärbung für VIP neu machen.
Expand Down

0 comments on commit d9cfa4a

Please sign in to comment.