-
+
+
@@ -105,7 +112,7 @@
function formatTextToCamelCase(str) {
return str
.replace(/_/g, ' ') // replace underscores with spaces
- .toLowerCase() // convert everything to lowercase
+ .toLowerCase() // convert everything to lowercase
.replace(/\b\w/g, char => char.toUpperCase()); // capitalize each word
}
\ No newline at end of file
diff --git a/app/Views/insurer_onboarding.php b/app/Views/insurer_onboarding.php
index babb086a..2889ba13 100755
--- a/app/Views/insurer_onboarding.php
+++ b/app/Views/insurer_onboarding.php
@@ -20,34 +20,44 @@
Insurer
-
@@ -60,17 +70,18 @@
-
-
+
\ No newline at end of file
diff --git a/app/Views/kyc_onboarding.php b/app/Views/kyc_onboarding.php
index b42c0839..eec84a12 100755
--- a/app/Views/kyc_onboarding.php
+++ b/app/Views/kyc_onboarding.php
@@ -1,33 +1,32 @@
@@ -50,21 +49,31 @@ body {
" >
-->
-
+
+
@@ -79,21 +88,23 @@ body {
+
\ No newline at end of file
diff --git a/app/Views/layout/footer.php b/app/Views/layout/footer.php
index 76ab717f..45b9cf6b 100755
--- a/app/Views/layout/footer.php
+++ b/app/Views/layout/footer.php
@@ -1077,18 +1077,19 @@
}
});
- $(function(){
- let $nav = $("ul ");
+$(function(){
+ let $nav = $("#myTab");
- $(".left-btn").on("click", function(){
- $nav.animate({ scrollLeft: $nav.scrollLeft() - 150 }, 200);
- });
-
- $(".right-btn").on("click", function(){
- $nav.animate({ scrollLeft: $nav.scrollLeft() + 150 }, 200);
- });
+ $(".left-btn").on("click", function(){
+ $nav.stop().animate({ scrollLeft: $nav.scrollLeft() - 150 }, 200);
});
+ $(".right-btn").on("click", function(){
+ $nav.stop().animate({ scrollLeft: $nav.scrollLeft() + 150 }, 200);
+ });
+});
+
+
// function openModal(modalId) {
// console.log('openModal called with ID:', modalId);
// var modalEl = document.getElementById(modalId);
@@ -1107,6 +1108,21 @@
+
+
+