We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 467e523 + 73f36a1 commit d87a1f0Copy full SHA for d87a1f0
js/render-facade.js
@@ -137,8 +137,10 @@
137
// display all charts that are NOT to be lazy-loaded.
138
$( 'div.viz-facade-loaded:not(.visualizer-lazy):empty' ).removeClass( 'viz-facade-loaded' );
139
$('div.visualizer-front:not(.visualizer-lazy):not(.viz-facade-loaded)').each(function(index, element){
140
- var id = $(element).addClass('viz-facade-loaded').attr('id');
141
- showChart(id);
+ if ( $(element).is(':visible') ) {
+ var id = $(element).addClass('viz-facade-loaded').attr('id');
142
+ showChart(id);
143
+ }
144
refreshEachCharts();
145
});
146
0 commit comments