Sha256: ca3fa7f64be6ed50f2c866d0c704505568c38300c63b75f32cdc85044d7535b7
Contents?: true
Size: 284 Bytes
Versions: 19
Compression:
Stored size: 284 Bytes
Contents
/* eslint-disable require-jsdoc */ // renderChart receives a chart function as argument and renders it // Also captures change.zf.tabs event and re-renders the chart export default function renderChart(chart) { chart() $(document).on("change.zf.tabs", () => { chart() }); }
Version data entries
19 entries across 19 versions & 1 rubygems