mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/11552] Tooltips for breadcrumbs
PHPBB3-11552
This commit is contained in:
parent
77a9635495
commit
464248d341
1 changed files with 6 additions and 0 deletions
|
@ -481,6 +481,12 @@ function insert_single_user(formId, user)
|
||||||
maxHeight = $this.height() + 1;
|
maxHeight = $this.height() + 1;
|
||||||
$this.css('white-space', '');
|
$this.css('white-space', '');
|
||||||
|
|
||||||
|
// Set tooltips
|
||||||
|
$this.find('a').each(function() {
|
||||||
|
var $link = $(this);
|
||||||
|
$link.attr('title', $link.text());
|
||||||
|
});
|
||||||
|
|
||||||
// Funciton that checks breadcrumbs
|
// Funciton that checks breadcrumbs
|
||||||
function check() {
|
function check() {
|
||||||
var height = $this.height(),
|
var height = $this.height(),
|
||||||
|
|
Loading…
Add table
Reference in a new issue