Browserify for easier UMD consumptions and vanilla builds

This commit is contained in:
Tanner Linsley
2016-02-11 20:30:53 -07:00
parent 09783be8a9
commit f2780bb825
39 changed files with 12702 additions and 12895 deletions

View File

@@ -1,10 +1,8 @@
(function() {
"use strict";
"use strict";
module.exports = function(Chart) {
var root = this,
Chart = root.Chart,
helpers = Chart.helpers;
var helpers = require('../core/core.helpers.js');
Chart.defaults.bubble = {
hover: {
@@ -167,4 +165,4 @@
point._model.borderWidth = point.custom && point.custom.borderWidth ? point.custom.borderWidth : helpers.getValueAtIndexOrDefault(this.getDataset().borderWidth, index, this.chart.options.elements.point.borderWidth);
}
});
}).call(this);
};