The emoji selector is now available for comments
This commit is contained in:
parent
148f12580b
commit
0a3f1094ce
|
@ -100,17 +100,4 @@
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
dzFactory.setupDropzone('#dropzone-{{$id}}', 'comment-edit-text-{{$id}}');
|
dzFactory.setupDropzone('#dropzone-{{$id}}', 'comment-edit-text-{{$id}}');
|
||||||
</script>
|
</script>
|
||||||
<script>
|
|
||||||
window.onload = function(){
|
|
||||||
new EmojiPicker({
|
|
||||||
trigger: [
|
|
||||||
{
|
|
||||||
selector: '.emojis',
|
|
||||||
insertInto: '.comment-edit-text'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
closeButton: true,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
</script>
|
|
|
@ -36,6 +36,9 @@
|
||||||
<button type="button" class="btn btn-sm template-icon quote" style="cursor: pointer;" aria-label="{{$edquote}}" title="{{$edquote}}" onclick="insertFormatting('quote',{{$id}});">
|
<button type="button" class="btn btn-sm template-icon quote" style="cursor: pointer;" aria-label="{{$edquote}}" title="{{$edquote}}" onclick="insertFormatting('quote',{{$id}});">
|
||||||
<i class="fa fa-quote-left"></i>
|
<i class="fa fa-quote-left"></i>
|
||||||
</button>
|
</button>
|
||||||
|
<button type="button" class="btn btn-sm template-icon emojis" style="cursor: pointer;" aria-label="{{$edemojis}}" title="{{$edemojis}}">
|
||||||
|
<i class="fa fa-smile-o"></i>
|
||||||
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<div id="dropzone-{{$id}}" class="dropzone">
|
<div id="dropzone-{{$id}}" class="dropzone">
|
||||||
|
|
|
@ -151,7 +151,20 @@
|
||||||
<script type="text/javascript" src="view/js/fancybox/jquery.fancybox.min.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
|
<script type="text/javascript" src="view/js/fancybox/jquery.fancybox.min.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
|
||||||
<script type="text/javascript" src="view/js/fancybox/fancybox.config.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
|
<script type="text/javascript" src="view/js/fancybox/fancybox.config.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
|
||||||
<script type="text/javascript" src="view/js/vanillaEmojiPicker/vanillaEmojiPicker.min.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
|
<script type="text/javascript" src="view/js/vanillaEmojiPicker/vanillaEmojiPicker.min.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
|
||||||
|
<script>
|
||||||
|
window.onload = function(){
|
||||||
|
new EmojiPicker({
|
||||||
|
trigger: [
|
||||||
|
{
|
||||||
|
selector: '.emojis',
|
||||||
|
insertInto: ['#comment-edit-text-0', '.profile-jot-text-full', '.comment-edit-text-full']
|
||||||
|
}
|
||||||
|
],
|
||||||
|
closeButton: true
|
||||||
|
});
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
{{* Include the strings which are needed for some js functions (e.g. translation)
|
{{* Include the strings which are needed for some js functions (e.g. translation)
|
||||||
They are loaded into the html <head> so that js functions can use them *}}
|
They are loaded into the html <head> so that js functions can use them *}}
|
||||||
{{include file="js_strings.tpl"}}
|
{{include file="js_strings.tpl"}}
|
||||||
|
|
|
@ -182,17 +182,4 @@ can load different content into the jot modal (e.g. the item edit jot)
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
dzFactory.setupDropzone('#jot-text-wrap', 'profile-jot-text');
|
dzFactory.setupDropzone('#jot-text-wrap', 'profile-jot-text');
|
||||||
</script>
|
</script>
|
||||||
<script>
|
|
||||||
window.onload = function(){
|
|
||||||
new EmojiPicker({
|
|
||||||
trigger: [
|
|
||||||
{
|
|
||||||
selector: '.emojis',
|
|
||||||
insertInto: '.profile-jot-text'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
closeButton: true,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
</script>
|
|
Loading…
Reference in a new issue