Skip to content

Commit

Permalink
Update tooltips with new classes
Browse files Browse the repository at this point in the history
The li classes changed, so I'm updating so that the tooltip overflow works. I also changed a variable name to be correct.
  • Loading branch information
bradmbaker committed Jan 6, 2016
1 parent 27ceb15 commit a04cf27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions panoramix/static/panoramix.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,9 @@ var px = (function() {
});

// this sets the z-index for left side boxes higher
$('li.slice').each(function() {
current_row = $(this).attr('data-col');
$( this ).css('z-index', 100 - current_row);
$('li.widget').each(function() {
current_col = $(this).attr('data-col');
$( this ).css('z-index', 100 - current_col);
});

// this makes the whole chart fit within the dashboard div
Expand Down

0 comments on commit a04cf27

Please sign in to comment.