mirror of
https://github.com/friendica/friendica
synced 2025-04-27 00:30:10 +00:00
The Emojipicker is added to Frio for new posts
This commit is contained in:
parent
44bdff664a
commit
45c1d74750
15 changed files with 8475 additions and 117 deletions
47
view/js/vanillaEmojiPicker/indextest.html
Normal file
47
view/js/vanillaEmojiPicker/indextest.html
Normal file
|
@ -0,0 +1,47 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<style>
|
||||
html, body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<div>
|
||||
<textarea name="" class="two uk-textarea uk-margin"></textarea>
|
||||
</div>
|
||||
<div class="uk-container uk-container-small uk-section">
|
||||
<div>
|
||||
<button class="second-btn uk-button uk-button-primary">Start picker</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script src="vanillaEmojiPicker.js"></script>
|
||||
<script>
|
||||
|
||||
new EmojiPicker({
|
||||
trigger: [
|
||||
{
|
||||
selector: '.second-btn',
|
||||
insertInto: '.two'
|
||||
}
|
||||
],
|
||||
closeButton: true,
|
||||
//specialButtons: green
|
||||
});
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue