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.
1 parent b69e4f4 commit 6f6fa8cCopy full SHA for 6f6fa8c
1 file changed
EngagementWidget/EngagementWidgetHTML.html
@@ -81,21 +81,17 @@ <h5>
81
}
82
},
83
loadVenn = function() {
84
- if (typeof window.Highcharts._modules["Series/Venn/VennUtils.js"] !== "undefined") {
85
- return doChart();
86
- } else {
87
- let script = document.createElement('script');
88
- script.onload = function () {
89
- doChart()
90
- };
91
- script.src = "https://code.highcharts.com/modules/venn.js";
92
-
93
- document.head.appendChild(script);
94
- }
+ let script = document.createElement('script');
+ script.onload = function () {
+ doChart()
+ };
+ script.src = "https://code.highcharts.com/modules/venn.js";
+
+ document.head.appendChild(script);
95
};
96
loadHighcharts();
97
98
engagementChart();
99
100
101
-</script>
+</script>
0 commit comments