first commit, after modifying client section
This commit is contained in:
10
public/assets/vendors/jquery.easy-pie-chart/src/jquery.plugin.js
vendored
Executable file
10
public/assets/vendors/jquery.easy-pie-chart/src/jquery.plugin.js
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
$.fn.easyPieChart = function(options) {
|
||||
return this.each(function() {
|
||||
var instanceOptions;
|
||||
|
||||
if (!$.data(this, 'easyPieChart')) {
|
||||
instanceOptions = $.extend({}, options, $(this).data());
|
||||
$.data(this, 'easyPieChart', new EasyPieChart(this, instanceOptions));
|
||||
}
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user