Spaces:
Sleeping
Sleeping
Update application/static/js/script.js
Browse files- application/static/js/script.js +18 -14
application/static/js/script.js
CHANGED
@@ -1,14 +1,18 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
|
|
|
1 |
+
// application/static/js/script.js
|
2 |
+
console.log("script.js loaded and running!");
|
3 |
+
alert("script.js loaded and running!"); // Add an alert
|
4 |
+
|
5 |
+
// import UIManager from "./components/uiManager.js";
|
6 |
+
// import Navbar from "./components/navbar.js";
|
7 |
+
// class App{
|
8 |
+
// constructor(){
|
9 |
+
// this.uiManager = new UIManager()
|
10 |
+
// this.navbar = new Navbar(this.uiManager);
|
11 |
+
// }
|
12 |
+
// run(){
|
13 |
+
// this.uiManager.run();
|
14 |
+
// this.navbar.run();
|
15 |
+
// }
|
16 |
+
// }
|
17 |
+
// const app = new App()
|
18 |
+
// app.run();
|