Skip to content

Commit

Permalink
Improve tooltips on table headers
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Feb 9, 2012
1 parent 1255524 commit 3b7512f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions web/public/css/taginfo.css
Expand Up @@ -515,3 +515,8 @@ table.desc td {
}

/* ========== */

div.hDiv table th span {
display: block;
}

2 changes: 1 addition & 1 deletion web/public/js/taginfo.js
Expand Up @@ -281,7 +281,7 @@ function create_flexigrid(domid, options) {
var me = jQuery('#' + domid),
rp = calculate_flexigrid_rp(me.parents('.resize,.ui-tabs-panel'));
grids[domid] = me.flexigrid(jQuery.extend({}, flexigrid_defaults, texts.flexigrid, options, { rp: rp }));
jQuery('th *[title]').tipsy({ opacity: 1, delayIn: 500, gravity: 's' });
jQuery('th *[title]').tipsy({ opacity: 1, delayIn: 500, gravity: 's', offset: 3 });
jQuery('.sDiv input[title]').tipsy({ opacity: 1, delayIn: 500, gravity: 'e' });
} else {
// grid does exist, make sure it has the right size
Expand Down

0 comments on commit 3b7512f

Please sign in to comment.