fix
This commit is contained in:
parent
459746144e
commit
fc7f316cc9
@ -1,4 +1,7 @@
|
||||
body,
|
||||
body {
|
||||
padding-bottom: 150px;
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
@ -38,7 +41,7 @@ html {
|
||||
max-width: 780px;
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-bottom: 180px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* Primary color */
|
||||
|
@ -55,6 +55,11 @@
|
||||
}, 200);
|
||||
}
|
||||
|
||||
function updateIcon(icon, ConversationAreaId) {
|
||||
var selectedIcon = document.getElementById('selectedIcon-' + ConversationAreaId);
|
||||
selectedIcon.src = icon;
|
||||
}
|
||||
|
||||
function handleTextareaKeydown(event) {
|
||||
if (event.metaKey && event.key === 'Enter') {
|
||||
// Check if the cursor is in the textarea
|
||||
|
@ -23,13 +23,6 @@
|
||||
|
||||
{{embed}}
|
||||
|
||||
<script>
|
||||
function updateIcon(icon, ConversationAreaId) {
|
||||
var selectedIcon = document.getElementById('selectedIcon-' + ConversationAreaId);
|
||||
selectedIcon.src = icon;
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
function copyToClipboardCode(button) {
|
||||
// Get the code element next to the button
|
||||
|
Loading…
x
Reference in New Issue
Block a user