From 921b0fadc158c755ee3e4f149a29965daf92f4a9 Mon Sep 17 00:00:00 2001 From: Praneeth Kolanu Date: Wed, 24 Mar 2021 19:43:00 +0530 Subject: [PATCH] uncommented testing time unnecessaries --- js/main/component.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/js/main/component.js b/js/main/component.js index 2c98c9c..fe7493f 100644 --- a/js/main/component.js +++ b/js/main/component.js @@ -128,7 +128,7 @@ function clickedChoice(choice) { setTimeout(function () { respond(content = 'Thank you!'); setTimeout(function () { - // window.location.href = '/plans/'; + window.location.href = '/plans/'; }, delay + 1000); }, delay); break; @@ -145,7 +145,7 @@ function clickedChoice(choice) { setTimeout(function () { respond(content = 'Thank you!'); setTimeout(function () { - // window.location.href = '/blogs/academic/'; + window.location.href = '/blogs/academic/'; }, delay + 1000); }, delay); break; @@ -154,7 +154,7 @@ function clickedChoice(choice) { setTimeout(function () { respond(content = 'Thank you!'); setTimeout(function () { - // window.location.href = '/blogs/general/'; + window.location.href = '/blogs/general/'; }, delay + 1000); }, delay); break; @@ -163,7 +163,7 @@ function clickedChoice(choice) { setTimeout(function () { respond(content = 'Thank you!'); setTimeout(function () { - // window.location.href = '/free_resources/#youtube/'; + window.location.href = '/free_resources/#youtube/'; }, delay + 1000); }, delay); break; @@ -172,7 +172,7 @@ function clickedChoice(choice) { setTimeout(function () { respond(content = 'Thank you!'); setTimeout(function () { - // window.location.href = '/free_resources/#books/'; + window.location.href = '/free_resources/#books/'; }, delay + 1000); }, delay); break; @@ -194,7 +194,7 @@ function addTypingEffect(delay, callback) { $('.chat-body').append(createTypingEffect()); setTimeout(function () { $('.chat-body > div').last().remove(); - // messageAudio.play(); + messageAudio.play(); callback() }, delay); }