Skip to content

Commit

Permalink
Closes icenet-ai#9: removed SIC trend
Browse files Browse the repository at this point in the history
  • Loading branch information
JimCircadian committed Sep 22, 2023
1 parent 408fbd0 commit 5e6ab5a
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions icenet_app/templates/index.j2
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,8 @@
</div>
</div>
<div class="bsk-row">
<div id="plot_trend_mean" class="bsk-col-12-md-6 bsk-docs-content-block"></div>
<div id="plot_trend_stddev" class="bsk-col-12-md-6 bsk-docs-content-block"></div>
</div>
<div class="bsk-row">
<div id="plot_sie_change" class="bsk-col-12-md-6 bsk-docs-content-block"></div>
<div class="bsk-col-12-md-6 bsk-docs-content-block">&nbsp;</div>
</div>
{% else %}
<div class="bsk-row">
Expand Down Expand Up @@ -103,9 +99,6 @@
fetch('/plots/sie_change')
.then(function(response) { return response.json(); })
.then(function(item) { Bokeh.embed.embed_item(item, "plot_sie_change"); });
fetch('/plots/trend_mean')
.then(function(response) { return response.json(); })
.then(function(item) { Bokeh.embed.embed_item(item, "plot_trend_mean"); });
fetch('/plots/trend_stddev')
.then(function(response) { return response.json(); })
.then(function(item) { Bokeh.embed.embed_item(item, "plot_trend_stddev"); });
Expand Down

0 comments on commit 5e6ab5a

Please sign in to comment.