1
0
Fork 0

Add prompt for link and media in comment + remove video symbol

This commit is contained in:
Jonny Tischbein 2018-10-23 19:50:19 +02:00
commit d0c43c5597
4 changed files with 3 additions and 19 deletions

View file

@ -2,12 +2,6 @@
* @brief The file contains functions for text editing and commenting
*/
function initComment(callback) {
if (typeof callback != "undefined") {
callback();
}
}
function commentGetLink(id) {
reply = prompt("Please enter a link URL:");
if(reply && reply.length) {
@ -37,10 +31,7 @@ function commentlinkdrop(event, id) {
if(reply && reply.length) {
reply = bin2hex(reply);
$.get('parse_url?isComment=1&binurl=' + reply, function(data) {
if (!editor) $("comment-edit-text-" + id).val("");
initComment(function(){
addcommenttext(data, id);
});
addcommenttext(data, id);
});
}
}

View file

@ -42,12 +42,6 @@
<i class="fa fa-link"></i>
</button>
</li>
<li>
<button type="button" class="btn-link icon bb-video" style="cursor: pointer;" aria-label="{{$edvideo}}" title="{{$edvideo}}" onclick="insertFormatting('video',{{$id}});">
<i class="fa fa-video-camera"></i>
</button>
</li>
<li>
<button type="button" class="btn-link icon underline" style="cursor: pointer;" aria-label="{{$eduline}}" title="{{$eduline}}" onclick="insertFormatting('u',{{$id}});">
<i class="fa fa-underline"></i>