blob: 067356594531fa8f54d4301681bbbe9546953b9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@yield('widget')
<script type = "text/javascript">
//check to see if the necessary scripts are loaded
//htmx
if (htmx == undefined) {
console.warning("main.js not loaded");
}
//jquery
if (window.mainLoaded) {
console.warning("main.js not loaded");
}
//main.js
if (window.mainLoaded) {
console.warning("main.js not loaded");
}
</script>
<script src="https://unpkg.com/htmx.org@2.0.1"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src = "https://code.jquery.com/jquery-3.7.1.min.js"></script>
|