mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
var Stickers = {
|
|
addSmiley: function(element) {
|
|
var n = document.querySelector('#chat_textarea');
|
|
n.value = n.value + element.dataset.emoji;
|
|
n.focus();
|
|
Dialog.clear();
|
|
}
|
|
}
|