Reality123b commited on
Commit
3bc1a5f
·
verified ·
1 Parent(s): 7de66d7

Update application/static/js/script.js

Browse files
Files changed (1) hide show
  1. application/static/js/script.js +18 -14
application/static/js/script.js CHANGED
@@ -1,14 +1,18 @@
1
- import UIManager from "./components/uiManager.js";
2
- import Navbar from "./components/navbar.js";
3
- class App{
4
- constructor(){
5
- this.uiManager = new UIManager()
6
- this.navbar = new Navbar(this.uiManager);
7
- }
8
- run(){
9
- this.uiManager.run();
10
- this.navbar.run();
11
- }
12
- }
13
- const app = new App()
14
- app.run();
 
 
 
 
 
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();