Version Description
Download this release
Release Info
Developer | codeinwp |
Plugin | WordPress Charts and Graphs Lite |
Version | 1.6.6 |
Comparing to | |
See all releases |
Code changes from version 1.6.5 to 1.6.6
- CHANGELOG.md +50 -11
- classes/Visualizer/Plugin.php +1 -1
- css/media.css +1 -1
- index.php +1 -1
- js/render.js +1 -1
- readme.txt +3 -0
CHANGELOG.md
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
0 |
-
|
|
|
|
|
|
|
1 |
-
|
2 |
-
|
|
|
|
|
|
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
|
3 |
+
|
4 |
+
|
5 |
+
|
6 |
+
|
7 |
+
|
8 |
+
|
9 |
+
|
10 |
+
|
11 |
+
|
12 |
+
|
13 |
+
|
14 |
+
|
15 |
+
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
### 1.5.4 - 04/03/2016
|
30 |
+
|
31 |
+
Changes:
|
32 |
+
|
33 |
+
|
34 |
+
* free search over charts
|
35 |
+
|
36 |
+
free search over charts
|
37 |
+
* free search over charts
|
38 |
+
|
39 |
+
free search over charts
|
40 |
+
* Merge pull request #69 from abaicus/development
|
41 |
+
|
42 |
+
!!!Changed search styles
|
43 |
+
* Added free search text over charts
|
44 |
+
* Merge pull request #68 from abaicus/development
|
45 |
+
|
46 |
+
Fixed Style Issues
|
47 |
+
* Merge branch 'production' into development
|
48 |
+
|
49 |
+
# Conflicts:
|
50 |
+
# classes/Visualizer/Plugin.php
|
classes/Visualizer/Plugin.php
CHANGED
@@ -30,7 +30,7 @@
|
|
30 |
class Visualizer_Plugin {
|
31 |
|
32 |
const NAME = 'visualizer';
|
33 |
-
const VERSION = '1.6.
|
34 |
|
35 |
// custom post types
|
36 |
const CPT_VISUALIZER = 'visualizer';
|
30 |
class Visualizer_Plugin {
|
31 |
|
32 |
const NAME = 'visualizer';
|
33 |
+
const VERSION = '1.6.6';
|
34 |
|
35 |
// custom post types
|
36 |
const CPT_VISUALIZER = 'visualizer';
|
css/media.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/*
|
2 |
-
Version: 1.6.
|
3 |
*/
|
4 |
#visualizer-library-view {
|
5 |
padding: 30px 10px 10px 30px;
|
1 |
/*
|
2 |
+
Version: 1.6.6
|
3 |
*/
|
4 |
#visualizer-library-view {
|
5 |
padding: 30px 10px 10px 30px;
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Visualizer: Charts and Graphs Lite
|
4 |
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
|
5 |
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.
|
6 |
-
Version: 1.6.
|
7 |
Author: Themeisle
|
8 |
Author URI: http://themeisle.com
|
9 |
License: GPL v2.0 or later
|
3 |
Plugin Name: Visualizer: Charts and Graphs Lite
|
4 |
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
|
5 |
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.
|
6 |
+
Version: 1.6.6
|
7 |
Author: Themeisle
|
8 |
Author URI: http://themeisle.com
|
9 |
License: GPL v2.0 or later
|
js/render.js
CHANGED
@@ -223,7 +223,7 @@
|
|
223 |
|
224 |
var mutateObserver = new MutationObserver(function(records) {
|
225 |
records.forEach(function(record) {
|
226 |
-
if(record.attributeName == "style"){
|
227 |
var element = $(record.target);
|
228 |
var displayStyle = window.getComputedStyle(element[0]).getPropertyValue("display");
|
229 |
if(element.hasClass("visualizer-hidden-container-resized") || displayStyle == "none") return;
|
223 |
|
224 |
var mutateObserver = new MutationObserver(function(records) {
|
225 |
records.forEach(function(record) {
|
226 |
+
if(record.attributeName == "style" || record.attributeName == "class"){
|
227 |
var element = $(record.target);
|
228 |
var displayStyle = window.getComputedStyle(element[0]).getPropertyValue("display");
|
229 |
if(element.hasClass("visualizer-hidden-container-resized") || displayStyle == "none") return;
|
readme.txt
CHANGED
@@ -70,6 +70,9 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
|
|
70 |
|
71 |
== Changelog ==
|
72 |
|
|
|
|
|
|
|
73 |
= 1.6.5=
|
74 |
* Fixed responsive issue
|
75 |
* Fixed no axis text color for line and bar charts
|
70 |
|
71 |
== Changelog ==
|
72 |
|
73 |
+
= 1.6.6=
|
74 |
+
* Fixed charts resizing on tabbed content
|
75 |
+
|
76 |
= 1.6.5=
|
77 |
* Fixed responsive issue
|
78 |
* Fixed no axis text color for line and bar charts
|