We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4809f23 commit 4f9c34eCopy full SHA for 4f9c34e
tethysapp/streamflow_prediction_tool/public/js/map.js
@@ -2230,6 +2230,13 @@ var ERFP_MAP = (function() {
2230
});
2231
};
2232
2233
+ //make sure active Plotly plots resize on modal show
2234
+ $('#chart_modal').on('shown.bs.modal', function() {
2235
+ $('#chart_modal .modal-body .tab-pane.active .js-plotly-plot').each(function(){
2236
+ Plotly.Plots.resize($(this)[0]);
2237
+ });
2238
2239
+
2240
//init tooltip
2241
$('.boot_tooltip').tooltip();
2242
0 commit comments