upgraded PHPMailer, AdminLTE, chartJS, Select2 Libraries

This commit is contained in:
johnny@pittpc.com
2020-01-21 00:45:16 -05:00
parent 382a4b2842
commit cf740d3ce4
179 changed files with 8016 additions and 15932 deletions

View File

@@ -1,5 +1,5 @@
/*!
* Chart.js v2.9.2
* Chart.js v2.9.3
* https://www.chartjs.org
* (c) 2019 Chart.js Contributors
* Released under the MIT License
@@ -3888,7 +3888,7 @@ helpers$1.extend(DatasetController.prototype, {
}
if (style.fill === false || style.fill === null) {
style.backgroundColor = 'rgba(0,0,0,0)';
style.backgroundColor = style.borderColor;
}
return style;
@@ -11439,7 +11439,7 @@ var Scale = core_element.extend({
*/
_getLabels: function() {
var data = this.chart.data;
return this.options.labels || (this.isHorizontal() ? data.xLabels : data.yLabels) || data.labels;
return this.options.labels || (this.isHorizontal() ? data.xLabels : data.yLabels) || data.labels || [];
},
// These methods are ordered by lifecyle. Utilities then follow.