From b3abd742ac5071f894d6e2a0ca15417563007ba8 Mon Sep 17 00:00:00 2001 From: sagarbhaltilak <31180744+sagarbhaltilak@users.noreply.github.com> Date: Sun, 20 Aug 2017 18:45:53 +0530 Subject: [PATCH 01/30] [imad-console] Updates ui/index.html --- ui/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/index.html b/ui/index.html index 5a28644db45..0b9bbdafe71 100644 --- a/ui/index.html +++ b/ui/index.html @@ -9,7 +9,7 @@
- Hi! I am your webapp. + Hi! I am sagar and this is my first web app.
From 11dd3f88d1050b52d2dafb034d2fb25e086fec75 Mon Sep 17 00:00:00 2001 From: sagarbhaltilak <31180744+sagarbhaltilak@users.noreply.github.com> Date: Sun, 20 Aug 2017 19:43:07 +0530 Subject: [PATCH 02/30] Update index.html --- ui/index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/index.html b/ui/index.html index 0b9bbdafe71..087de571e67 100644 --- a/ui/index.html +++ b/ui/index.html @@ -11,6 +11,9 @@
Hi! I am sagar and this is my first web app.
+

+ its looking good

+
From 727143f8c7ca3a334100b68e2e45533f804cee5d Mon Sep 17 00:00:00 2001 From: sagarbhaltilak <31180744+sagarbhaltilak@users.noreply.github.com> Date: Mon, 21 Aug 2017 16:21:55 +0530 Subject: [PATCH 03/30] [imad-console] Updates ui/index.html --- ui/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/index.html b/ui/index.html index 087de571e67..2074469d5f4 100644 --- a/ui/index.html +++ b/ui/index.html @@ -11,7 +11,7 @@
Hi! I am sagar and this is my first web app.
-

+

its looking good

From 4eb79a839b355f84c00212b4c0ad5506423301ec Mon Sep 17 00:00:00 2001 From: sagarbhaltilak <31180744+sagarbhaltilak@users.noreply.github.com> Date: Thu, 24 Aug 2017 11:39:41 +0530 Subject: [PATCH 29/30] [imad-console] Updates server.js --- server.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.js b/server.js index 394c9797be7..0421bd611e7 100644 --- a/server.js +++ b/server.js @@ -67,12 +67,12 @@ app.get('/article-three',function(req,res){ res.sendFile(path.join(__dirname, 'ui', 'article-three.html')); }); -app.get('/ui/style.css', function (req, res) { +app.get('/ui/main.js', function (req, res) { res.sendFile(path.join(__dirname, 'ui', 'style.css')); }); app.get('/ui/madi.png', function (req, res) { - res.sendFile(path.join(__dirname, 'ui', 'madi.png')); + res.sendFile(path.join(__dirname, 'ui', 'main.js')); }); From 0406ace19c162f4e6af8dae141083d8d446f9303 Mon Sep 17 00:00:00 2001 From: sagarbhaltilak <31180744+sagarbhaltilak@users.noreply.github.com> Date: Thu, 24 Aug 2017 11:41:25 +0530 Subject: [PATCH 30/30] [imad-console] Updates server.js --- server.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/server.js b/server.js index 0421bd611e7..284ed2aef19 100644 --- a/server.js +++ b/server.js @@ -67,12 +67,15 @@ app.get('/article-three',function(req,res){ res.sendFile(path.join(__dirname, 'ui', 'article-three.html')); }); -app.get('/ui/main.js', function (req, res) { +app.get('/ui/style.css', function (req, res) { res.sendFile(path.join(__dirname, 'ui', 'style.css')); }); +app.get('/ui/main.js', function (req, res) { + res.sendFile(path.join(__dirname, 'ui', 'main.js')); +}); app.get('/ui/madi.png', function (req, res) { - res.sendFile(path.join(__dirname, 'ui', 'main.js')); + res.sendFile(path.join(__dirname, 'ui', 'madi.png')); });