Skip to content

Commit 7cbf846

Browse files
authored
Merge pull request #176 from contactashish13/helpscout-blinking-charts
Fixed blinking chart issue.
2 parents 0797ec4 + 4629602 commit 7cbf846

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
lines changed

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 = '2.1.0';
31+
const VERSION = '2.1.1';
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: 2.1.0
2+
Version: 2.1.1
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: Charts and Graphs Lite
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: 2.1.0
7+
Version: 2.1.1
88
Author: Themeisle
99
Author URI: http://themeisle.com
1010
License: GPL v2.0 or later

js/render.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@
225225

226226
function resizeHiddenContainers(everytime){
227227
$(".visualizer-front").parents().each(function(){
228-
if(!$(this).hasClass("visualizer-hidden-container")){
228+
if(!$(this).is(":visible") && !$(this).hasClass("visualizer-hidden-container")){
229229
$(this).addClass("visualizer-hidden-container");
230230
}
231231
});

languages/visualizer.pot

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# This file is distributed under the GPL v2.0 or later.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Visualizer: Charts and Graphs Lite 2.0.5\n"
5+
"Project-Id-Version: Visualizer: Charts and Graphs Lite 2.1.0\n"
66
"Report-Msgid-Bugs-To: https://github.com/Codeinwp/visualizer/issues\n"
7-
"POT-Creation-Date: 2017-05-12 11:50:18+00:00\n"
7+
"POT-Creation-Date: 2017-05-16 06:15:21+00:00\n"
88
"MIME-Version: 1.0\n"
99
"Content-Type: text/plain; charset=utf-8\n"
1010
"Content-Transfer-Encoding: 8bit\n"
@@ -100,7 +100,9 @@ msgstr ""
100100
#: classes/Visualizer/Module/Admin.php:458
101101
msgid "Pro Addon"
102102
msgstr ""
103-
103+
104+
#: classes/Visualizer/Module/Chart.php:298
105+
#: classes/Visualizer/Module/Chart.php:580
104106
msgid "You have entered invalid URL. Please, insert proper URL."
105107
msgstr ""
106108

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": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Visualizer Lite",
55
"repository": {
66
"type": "git",

readme.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ http://docs.themeisle.com/article/610-how-can-i-edit-the-data-manually
119119

120120
== Changelog ==
121121

122+
= 2.1.1 =
123+
* Fixed charts bliking on some themes.
124+
122125
= 2.1.0 =
123126
* Fixed geomap issue with apikey.
124127
* Fixed responsive issues on tabbed interface and page builders.

0 commit comments

Comments
 (0)