3D-animation-arena's picture
Set up arena
6c9ff9d verified
raw
history blame contribute delete
196 Bytes
// Fix plot display issues with gradio Tabs
function resetPlots() {
document.querySelectorAll(".js-plotly-plot").forEach(plot => {
Plotly.relayout(plot, { autosize: true });
});
};