We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99d926b + 55a50fb commit 321d92dCopy full SHA for 321d92d
resources/js/main.js
@@ -12,4 +12,10 @@ window.format_date = function(date, format = "Y-m-d"){
12
else if(format == "d/m/Y"){
13
return String(date.getDate()).padStart(2, '0') + "/" + String(date.getMonth() + 1).padStart(2, '0') + "/" + date.getFullYear();
14
}
15
-}
+}
16
+
17
+document.addEventListener("DOMContentLoaded", function() {
18
+ setTimeout(function(){
19
+ htmx.trigger("#page", "change");
20
+ }, 100);
21
+});
0 commit comments