first commit

This commit is contained in:
maher
2025-12-28 13:49:00 +01:00
commit f0b8392c55
6148 changed files with 743662 additions and 0 deletions

17
public/assets/js/chart.peity.js Executable file
View File

@@ -0,0 +1,17 @@
$(function(){
'use strict'
// Line chart
$('.peity-line').peity('line');
// Bar charts
$('.peity-bar').peity('bar');
// Pie chart
$('.peity-pie').peity('pie');
// Donut chart
$('.peity-donut').peity('donut');
// Bar chart is already initialized found in bracket.js
});