diff --git a/public/chat.html b/public/chat.html index 6ddda15..7f75c01 100644 --- a/public/chat.html +++ b/public/chat.html @@ -118,7 +118,7 @@
diff --git a/public/js/chat.js b/public/js/chat.js index f087cce..13d9591 100644 --- a/public/js/chat.js +++ b/public/js/chat.js @@ -350,7 +350,7 @@ function chatRoomFull() { "Chat room is full. Check to make sure you don't have multiple open tabs, or try with a new room link" ); // Exit room and redirect - window.location.href = "/pickname"; + window.location.href = "/newcall"; } // Reposition local video to top left of remote video diff --git a/public/landing.html b/public/landing.html index 0f97c4c..00eadf8 100755 --- a/public/landing.html +++ b/public/landing.html @@ -92,7 +92,7 @@ #ffc55a 100% ); " - href="/pickname" + href="/newcall" >Try now
@@ -331,7 +331,7 @@ #ffc55a 100% ); " - href="/pickname" + href="/newcall" >Try now diff --git a/public/pickname.html b/public/newcall.html similarity index 100% rename from public/pickname.html rename to public/newcall.html diff --git a/server.js b/server.js index aeee97c..8389164 100644 --- a/server.js +++ b/server.js @@ -31,8 +31,8 @@ app.get("/", function (req, res) { res.sendFile(path.join(public, "landing.html")); }); -app.get("/pickname", function (req, res) { - res.sendFile(path.join(public, "pickname.html")); +app.get("/newcall", function (req, res) { + res.sendFile(path.join(public, "newcall.html")); }); app.get("/join/", function (req, res) {