datasafer-laravel
Version:
Extensão do sitema de frontend para o Laravel Mix
14 lines (11 loc) • 327 B
JavaScript
import * as $ from 'jquery';
import 'easy-pie-chart/dist/jquery.easypiechart.min.js';
export default (function () {
if ($('.easy-pie-chart').length > 0) {
$('.easy-pie-chart').easyPieChart({
onStep(from, to, percent) {
this.el.children[0].innerHTML = `${Math.round(percent)} %`;
},
});
}
}())