Skip to content

Commit

Permalink
Merge pull request #100 from bradmbaker/patch-1
Browse files Browse the repository at this point in the history
Update tooltips with new classes
  • Loading branch information
mistercrunch committed Jan 7, 2016
2 parents 09b8ed5 + a04cf27 commit eafd438
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 eafd438

Please sign in to comment.