Skip to content

Commit

Permalink
uncommented testing time unnecessaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Praneeth Kolanu committed Mar 24, 2021
1 parent a19de97 commit 921b0fa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions js/main/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand All @@ -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);
}
Expand Down

0 comments on commit 921b0fa

Please sign in to comment.