Spaces:
Sleeping
Sleeping
Update static/script.js
Browse files- static/script.js +2 -17
static/script.js
CHANGED
|
@@ -34,21 +34,6 @@ function sendMessage() {
|
|
| 34 |
}
|
| 35 |
}
|
| 36 |
|
| 37 |
-
// Add Enter key event listener for the input field
|
| 38 |
-
document.addEventListener('DOMContentLoaded', () => {
|
| 39 |
-
const userInput = document.getElementById('userInput');
|
| 40 |
-
if (userInput) {
|
| 41 |
-
userInput.addEventListener('keydown', (event) => {
|
| 42 |
-
if (event.key === 'Enter' && !event.shiftKey) {
|
| 43 |
-
event.preventDefault(); // Prevent default behavior (e.g., form submission)
|
| 44 |
-
sendMessage();
|
| 45 |
-
}
|
| 46 |
-
});
|
| 47 |
-
} else {
|
| 48 |
-
console.error('User input field not found during initialization!');
|
| 49 |
-
}
|
| 50 |
-
});
|
| 51 |
-
|
| 52 |
function displayForm() {
|
| 53 |
const chatMessages = document.getElementById('chatMessages');
|
| 54 |
if (!chatMessages) {
|
|
@@ -187,7 +172,7 @@ function handleResponse(userInput) {
|
|
| 187 |
} else if (lastMessage.includes('what is tionat?')) {
|
| 188 |
botResponse = 'TioNat is an e-commerce platform offering a wide range of products in Nutritional Care, Health Care, and Personal Care categories. We aim to improve the quality of life with top-notch, reliable, and scientifically-backed products.';
|
| 189 |
} else if (lastMessage.includes('how do i create an account on tionat?')) {
|
| 190 |
-
botResponse = 'To create an account on TioNat, simply click on the "Sign Up" button on the top-right corner of our website. Enter your name, email address, and a password. Once registered, you can start shopping!';
|
| 191 |
} else if (lastMessage.includes('how can i track my order?')) {
|
| 192 |
botResponse = 'After placing your order, you will receive a tracking number via email. You can also track your order from your TioNat account under the "Order History" section.';
|
| 193 |
} else if (lastMessage.includes('do you ship internationally?')) {
|
|
@@ -295,4 +280,4 @@ function handleResponse(userInput) {
|
|
| 295 |
if (options.length > 0) {
|
| 296 |
displayOptions(options);
|
| 297 |
}
|
| 298 |
-
}
|
|
|
|
| 34 |
}
|
| 35 |
}
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
function displayForm() {
|
| 38 |
const chatMessages = document.getElementById('chatMessages');
|
| 39 |
if (!chatMessages) {
|
|
|
|
| 172 |
} else if (lastMessage.includes('what is tionat?')) {
|
| 173 |
botResponse = 'TioNat is an e-commerce platform offering a wide range of products in Nutritional Care, Health Care, and Personal Care categories. We aim to improve the quality of life with top-notch, reliable, and scientifically-backed products.';
|
| 174 |
} else if (lastMessage.includes('how do i create an account on tionat?')) {
|
| 175 |
+
botResponse = 'To create an account on TioNat, simply click on the "Sign Up" button on the top-right corner of our website. Enter your name, email address, and a password. Once registered, you can start shopping!';
|
| 176 |
} else if (lastMessage.includes('how can i track my order?')) {
|
| 177 |
botResponse = 'After placing your order, you will receive a tracking number via email. You can also track your order from your TioNat account under the "Order History" section.';
|
| 178 |
} else if (lastMessage.includes('do you ship internationally?')) {
|
|
|
|
| 280 |
if (options.length > 0) {
|
| 281 |
displayOptions(options);
|
| 282 |
}
|
| 283 |
+
}
|