Add dashboard chart animations and SVG integration for dynamic data visualization

This commit is contained in:
Matt Batchelder
2026-02-21 01:45:51 -05:00
parent be30e4d59f
commit f8321568ce
5 changed files with 602 additions and 1 deletions

View File

@@ -29,6 +29,15 @@ add_action( 'wp_enqueue_scripts', function () {
true
);
// Dashboard chart animator - smooth continuous animations for dashboard cards
wp_enqueue_script(
'oribi-dashboard-animator',
ORIBI_URI . '/assets/js/dashboard-animator.js',
[],
ORIBI_VERSION,
true
);
// Localize AJAX endpoint for the contact form
wp_localize_script( 'oribi-main', 'oribiAjax', [
'url' => admin_url( 'admin-ajax.php' ),