plugin assets sync

This commit is contained in:
2024-03-28 11:23:33 -04:00
parent 9d002773c8
commit 74d73feffa
4 changed files with 77 additions and 17 deletions

View File

@@ -407,7 +407,7 @@ $image_description = !empty($vehicle_images[0]['description']) ? $vehicle_images
<div class="p-4">
<span class="text-xl font-semibold">
<span class="text-gray-600 dark:text-gray-300 paymentSpan">
<?php echo $formattedPrice = '$ ' . number_format(416); ?>
<?php echo $formattedPrice = '$ ' . number_format($vehicle_details['advertise_price']); ?>
</span>
<i class="fas fa-calculator cursor-pointer" onclick="openFinanceModal()"></i>
</span>
@@ -625,9 +625,9 @@ const mergedDetails = {
const icon = this.querySelector('[data-accordion-icon]');
icon.style.transform = expanded === 'true' ? 'rotate(0deg)' : 'rotate(180deg)';
});
});
// ripple effect
const btns = document.getElementsByClassName("ripple-effect");
@@ -653,6 +653,9 @@ const mergedDetails = {
});
});
tabs[0].click();
});