Skip to content

Commit 6ea803d

Browse files
Merge pull request #584 from Codeinwp/development
Fix issue with table chart not loading in the block editor
2 parents c92ac8e + a9066bd commit 6ea803d

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

classes/Visualizer/Gutenberg/build/block.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

classes/Visualizer/Gutenberg/build/block.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

classes/Visualizer/Gutenberg/build/handsontable.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

classes/Visualizer/Gutenberg/build/handsontable.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

classes/Visualizer/Gutenberg/src/Components/DataTable.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ class DataTables extends Component {
108108

109109
if ( 'date' === type || 'datetime' === type || 'timeofday' === type ) {
110110
if ( settings.series[index].format && settings.series[index].format.from && settings.series[index].format.to ) {
111-
return $.fn.dataTable.render.moment( settings.series[index].format.from, settings.series[index].format.to );
111+
return jQuery.fn.dataTable.render.moment( settings.series[index].format.from, settings.series[index].format.to );
112112
}
113113

114-
return $.fn.dataTable.render.moment( 'MM-DD-YYYY' );
114+
return jQuery.fn.dataTable.render.moment( 'MM-DD-YYYY' );
115115
}
116116

117117
if ( 'num' === type ) {
@@ -137,7 +137,7 @@ class DataTables extends Component {
137137
parts[4] = settings.series[index].format.suffix;
138138
}
139139

140-
return $.fn.dataTable.render.number( ...parts );
140+
return jQuery.fn.dataTable.render.number( ...parts );
141141
}
142142

143143
return data;

classes/Visualizer/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
class Visualizer_Plugin {
2929

3030
const NAME = 'visualizer';
31-
const VERSION = '3.3.3';
31+
const VERSION = '3.3.4';
3232

3333
// custom post types
3434
const CPT_VISUALIZER = 'visualizer';

css/media.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Version: 3.3.3
2+
Version: 3.3.4
33
*/
44
#visualizer-library-view {
55
padding: 30px 10px 10px 30px;

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin Name: Visualizer: Tables and Charts Manager for WordPress
55
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
66
Description: A simple, easy to use and quite powerful tool to create, manage and embed interactive charts into your WordPress posts and pages. The plugin uses Google Visualization API to render charts, which supports cross-browser compatibility (adopting VML for older IE versions) and cross-platform portability to iOS and new Android releases.
7-
Version: 3.3.3
7+
Version: 3.3.4
88
Author: Themeisle
99
Author URI: http://themeisle.com
1010
License: GPL v2.0 or later

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "visualizer",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
44
"description": "Visualizer Lite",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)