Skip to content

Commit

Permalink
[quickfix] embeded view missing some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jun 30, 2016
1 parent f407bd4 commit 8b95d17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion caravel/templates/caravel/standalone.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<html>
<head>
<script src="/static/assets/javascripts/dist/css-theme.entry.js"></script>
<script src="/static/assets/javascripts/dist/standalone.entry.js"></script>
<link rel="stylesheet" type="text/css" href="/static/assets/stylesheets/caravel.css" />
<link rel="stylesheet" type="text/css" href="/static/assets/node_modules/font-awesome/css/font-awesome.min.css" />
{% set CSS_THEME = appbuilder.get_app.config.get("CSS_THEME") %}
{% set height = request.args.get("height", 700) %}
{% if CSS_THEME %}
Expand All @@ -14,7 +16,7 @@
class="widget viz slice {{ viz.viz_type }}"
data-slice="{{ viz.json_data }}"
style="height: {{ height }}px;">
<img src="{{ url_for("static", filename="img/loading.gif") }}" class="loading" alt="loading">
<img src="{{ url_for("static", filename="assets/images/loading.gif") }}" class="loading" alt="loading">
<div id="{{ viz.token }}_con" class="slice_container" style="height: 100%; width: 100%"></div>
</div>
</body>
Expand Down

0 comments on commit 8b95d17

Please sign in to comment.