Skip to content

Commit

Permalink
bugfix in explore view
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jan 19, 2016
1 parent 8d40717 commit 110be35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion panoramix/static/panoramix.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ var px = (function() {
},
height: function(){
var others = 0;
var widget = token.parents('.widget');
var widget = container.parents('.widget');
var slice_description = widget.find('.slice_description');
if (slice_description.is(":visible"))
others += widget.find('.slice_description').height() + 25;
Expand Down
2 changes: 1 addition & 1 deletion panoramix/templates/panoramix/explore.html
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
{% include 'appbuilder/flash.html' %}
<div
id="{{ viz.token }}"
class="viz slice {{ viz.viz_type }}"
class="widget viz slice {{ viz.viz_type }}"
data-slice="{{ viz.json_data }}"
style="height: 700px;">
<img src="{{ url_for("static", filename="img/loading.gif") }}" class="loading" alt="loading">
Expand Down

0 comments on commit 110be35

Please sign in to comment.