Skip to content

Commit

Permalink
remove dist directory updates
Browse files Browse the repository at this point in the history
  • Loading branch information
MHewison committed Apr 27, 2023
1 parent 4064d80 commit b8fc511
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion dist/apexcharts.amd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/apexcharts.common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/apexcharts.esm.js

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions dist/apexcharts.js
Original file line number Diff line number Diff line change
Expand Up @@ -9387,7 +9387,7 @@
columns.push('maximum');
} else {
series.map(function (s, sI) {
var sname = (s.name ? s.name : "series-".concat(sI)) + '';
var sname = s.name ? s.name : "series-".concat(sI);

if (w.globals.axisCharts) {
columns.push(sname.split(columnDelimiter).join('') ? sname.split(columnDelimiter).join('') : "series-".concat(sI));
Expand Down Expand Up @@ -28917,25 +28917,25 @@
inherit: SVG.Shape,
// Add class methods
extend: {
// (re)load image
// (re)load image
load: function load(url) {
if (!url) return this;
var self = this,
img = new window.Image(); // preload image
img = new window.Image(); // preload image

SVG.on(img, 'load', function () {
SVG.off(img);
var p = self.parent(SVG.Pattern);
if (p === null) return; // ensure image size
if (p === null) return; // ensure image size

if (self.width() == 0 && self.height() == 0) {
self.size(img.width, img.height);
} // ensure pattern size if not set
} // ensure pattern size if not set


if (p && p.width() == 0 && p.height() == 0) {
p.size(self.width(), self.height());
} // callback
} // callback


if (typeof self._loaded === 'function') {
Expand All @@ -28956,7 +28956,7 @@
});
return this.attr('href', img.src = this.src = url, SVG.xlink);
},
// Add loaded callback
// Add loaded callback
loaded: function loaded(_loaded) {
this._loaded = _loaded;
return this;
Expand All @@ -28968,7 +28968,7 @@
},
// Add parent method
construct: {
// create image element, load image and set its size
// create image element, load image and set its size
image: function image(source, width, height) {
return this.put(new SVG.Image()).load(source).size(width || 0, height || width || 0);
}
Expand Down Expand Up @@ -29666,10 +29666,10 @@
} // Create matrix array for looping


var abcdef = 'abcdef'.split(''); // Add CustomEvent to IE9 and IE10
var abcdef = 'abcdef'.split(''); // Add CustomEvent to IE9 and IE10

if (typeof window.CustomEvent !== 'function') {
// Code from: https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent
// Code from: https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent
var CustomEventPoly = function CustomEventPoly(event, options) {
options = options || {
bubbles: false,
Expand Down
2 changes: 1 addition & 1 deletion dist/apexcharts.min.js

Large diffs are not rendered by default.

0 comments on commit b8fc511

Please sign in to comment.