diff options
author | Simon Rettberg | 2019-12-17 14:33:08 +0100 |
---|---|---|
committer | Simon Rettberg | 2019-12-17 14:33:08 +0100 |
commit | c848221a597fce9573f94e467fa155d52db288e1 (patch) | |
tree | 37df723a3b026eb4e6d169277c593df545c69d73 /modules-available/roomplanner/js | |
parent | [serversetup-bwlp-ipxe] Show title of referenced menus in entry list (diff) | |
download | slx-admin-c848221a597fce9573f94e467fa155d52db288e1.tar.gz slx-admin-c848221a597fce9573f94e467fa155d52db288e1.tar.xz slx-admin-c848221a597fce9573f94e467fa155d52db288e1.zip |
[roomplanner] Tweak PC tooltip: disallow word-wrap
Diffstat (limited to 'modules-available/roomplanner/js')
-rw-r--r-- | modules-available/roomplanner/js/grid.js | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/modules-available/roomplanner/js/grid.js b/modules-available/roomplanner/js/grid.js index 80789963..9157faa5 100644 --- a/modules-available/roomplanner/js/grid.js +++ b/modules-available/roomplanner/js/grid.js @@ -123,20 +123,20 @@ if (!roomplanner) var roomplanner = { }); } }, - initTooltip: function(el) { + initTooltip: function (el) { if ($(el).attr('itemtype') === 'pc') { - var tip = '<div class="table">'; - $(roomplanner.computerAttributes).each(function(i,key){ + var tip = '<table>'; + $(roomplanner.computerAttributes).each(function (i, key) { + tip += '<tr>'; if (key === 'hostname') { - tip += '<div class="tc">' + $(el).attr(key) + '</div>'; - return; + tip += '<td colspan="2">' + $(el).attr(key) + '</td>'; + } else { + tip += '<td>' + __(key) + ": " + '</td>'; + tip += '<td>' + $(el).attr(key) + '</td>'; } - tip += '<div class="tr">'; - tip += '<div class="td">' + __(key) + ": " + '</div>'; - tip += '<div class="td">' + $(el).attr(key) + '</div>'; - tip += '</div>'; + tip += '</tr>'; }); - tip += '</div>'; + tip += '</table>'; $(el).attr('title', tip).attr('data-toggle', 'tooltip'); $(el).tooltip({html: true, container: 'body'}); |