File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -264,16 +264,13 @@ class Reveal:
264264
265265
266266class HighCharts :
267+ LIB = "https://cdn.jsdelivr.net/npm/highcharts"
267268 VER = "10.3.3"
268- HC_CSS = "https://code.highcharts.com/%s/css/highcharts.css" % VER
269- HC_JS = "https://code.highcharts.com/%s/highcharts.js" % VER
270- EXPORTING_JS = "https://code.highcharts.com/%s/modules/exporting.js" % VER
271- EXPORT_DATA_JS = (
272- "https://code.highcharts.com/%s/modules/export-data.js" % VER
273- )
274- ACCESSIBILITY_JS = (
275- "https://code.highcharts.com/%s/modules/accessibility.js" % VER
276- )
269+ HC_CSS = "%s@%s/css/highcharts.css" % (LIB , VER )
270+ HC_JS = "%s@%s/highcharts.js" % (LIB , VER )
271+ EXPORTING_JS = "%s@%s/modules/exporting.js" % (LIB , VER )
272+ EXPORT_DATA_JS = "%s@%s/modules/export-data.js" % (LIB , VER )
273+ ACCESSIBILITY_JS = "%s@%s/modules/accessibility.js" % (LIB , VER )
277274
278275
279276class BootstrapTour :
You can’t perform that action at this time.
0 commit comments