style
This commit is contained in:
@@ -116,10 +116,10 @@ Please note: it does not cover general Odoo usage or functional questions.
|
|||||||
<strong>Usage Tips:</strong>
|
<strong>Usage Tips:</strong>
|
||||||
<ul style="padding-left:20px; margin:8px 0; color:var(--muted);">
|
<ul style="padding-left:20px; margin:8px 0; color:var(--muted);">
|
||||||
<li>
|
<li>
|
||||||
Click <strong>Create a Ticket</strong> or type <code>/ticket</code> to get in touch with our support team.
|
Type <code>/ticket</code> to get in touch with our support team.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
✨ <strong>Feature Requests</strong><br>
|
<strong>Feature Requests</strong><br>
|
||||||
Suggest a new feature for our services by leaving a comment in the chat using this format:<br>
|
Suggest a new feature for our services by leaving a comment in the chat using this format:<br>
|
||||||
<code>/feature: [Your description here]</code><br>
|
<code>/feature: [Your description here]</code><br>
|
||||||
<em>Example:</em><br>
|
<em>Example:</em><br>
|
||||||
@@ -127,7 +127,7 @@ Please note: it does not cover general Odoo usage or functional questions.
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div style="margin-top:10px;">
|
<div style="margin-top:10px;">
|
||||||
⚠️ <strong>Important:</strong> If you cannot access Odoo due to a Git change, you can easily <a href="/" style="color:inherit; text-decoration:underline;">revert the last change via our homepage</a>.
|
⚠️ <strong>Important:</strong> If you cannot access Odoo due to a Git change, you can easily <a href="https://ODOO4projects.com" style="color:inherit; text-decoration:underline;">revert the last change via our homepage</a>.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -165,6 +165,7 @@ Please note: it does not cover general Odoo usage or functional questions.
|
|||||||
const input = document.getElementById('messageInput');
|
const input = document.getElementById('messageInput');
|
||||||
const sendBtn = document.getElementById('sendBtn');
|
const sendBtn = document.getElementById('sendBtn');
|
||||||
document.getElementById('webhook').textContent = WEBHOOK;
|
document.getElementById('webhook').textContent = WEBHOOK;
|
||||||
|
const uuid = params.get("uuid");
|
||||||
|
|
||||||
// Generate UUID once per page load
|
// Generate UUID once per page load
|
||||||
function generateUUID(){
|
function generateUUID(){
|
||||||
@@ -279,7 +280,7 @@ Please note: it does not cover general Odoo usage or functional questions.
|
|||||||
input.addEventListener('keydown', (e)=>{ if(e.key === 'Enter' && !e.shiftKey){ e.preventDefault(); sendMessage(); } });
|
input.addEventListener('keydown', (e)=>{ if(e.key === 'Enter' && !e.shiftKey){ e.preventDefault(); sendMessage(); } });
|
||||||
|
|
||||||
// friendly welcome
|
// friendly welcome
|
||||||
appendMessage('I am here to help with all your hosting-related questions.Type /ticket to contact our support team directly.', 'them');
|
appendMessage('I am here to help with all your hosting-related questions.Type /ticket to contact our support team directly. Your UUID is '+uuid, 'them');
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user