Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ node_modules
dist
dist-ssr
*.local

*.env
# Editor directories and files
.vscode/*
!.vscode/extensions.json
Expand Down
26 changes: 26 additions & 0 deletions client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,31 @@
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<script src='https://cdn.jotfor.ms/s/umd/latest/for-embedded-agent.js'></script>
<script>
window.addEventListener("DOMContentLoaded", function() {
window.AgentInitializer.init({
agentRenderURL: "https://agent.jotform.com/019550217dd97cb8996a100be688293fc219",
rootId: "JotformAgent-019550217dd97cb8996a100be688293fc219",
formID: "019550217dd97cb8996a100be688293fc219",
queryParams: ["skipWelcome=1", "maximizable=1"],
domain: "https://www.jotform.com",
isDraggable: false,
background: "linear-gradient(180deg, #6C73A8 0%, #6C73A8 100%)",
buttonBackgroundColor: "#0066C3",
buttonIconColor: "#FFFFFF",
variant: false,
customizations: {
"greeting": "Yes",
"greetingMessage": "Hi! How can I assist you?",
"openByDefault": "No",
"pulse": "Yes",
"position": "right",
"autoOpenChatIn": "0"
},
isVoice: false
});
  });
</script>
</body>
</html>
Loading