PluginProbe
Chartify – WordPress Chart Plugin / 3.5.4
Chartify – WordPress Chart Plugin v3.5.4
3.8.0 3.7.9 3.7.8 3.7.7 3.7.6 3.7.5 trunk 1.0.0 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 All 83 releases
chart-builder / public / js / chart-builder-public.js

chart-builder-public.js in Chartify – WordPress Chart Plugin 3.5.4, at public/js/chart-builder-public.js

17 lines 388 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function( $ ) {
2 'use strict';
3
4 $(document).ready(function () {
5
6 if (typeof $.fn.ChartBuilderGoogleChartsMain === 'function') {
7 $(document).find('.ays-chart-container-google').ChartBuilderGoogleChartsMain();
8 }
9
10 if (typeof $.fn.ChartBuilderChartJsMain === 'function') {
11 $(document).find('.ays-chart-container-chartjs').ChartBuilderChartJsMain();
12 }
13
14 });
15
16 })( jQuery );
17