Add prompt for link and media in comment + remove video symbol
This commit is contained in:
parent
3065d1c40a
commit
d0c43c5597
4 changed files with 3 additions and 19 deletions
|
@ -92,7 +92,7 @@ function parse_url_content(App $a)
|
|||
}
|
||||
}
|
||||
|
||||
if(!empty($_GET['isComment'])) {
|
||||
if (!empty($_GET['isComment'])) {
|
||||
echo $br . '[url]' . $url . '[/url]';
|
||||
exit();
|
||||
}
|
||||
|
|
|
@ -799,8 +799,7 @@ class Post extends BaseObject
|
|||
'$edquote' => L10n::t('Quote'),
|
||||
'$edcode' => L10n::t('Code'),
|
||||
'$edimg' => L10n::t('Image'),
|
||||
'$edurl' => L10n::t('Link'),
|
||||
'$edvideo' => L10n::t('Video'),
|
||||
'$edurl' => L10n::t('Link or Media'),
|
||||
'$preview' => ((Feature::isEnabled($conv->getProfileOwner(), 'preview')) ? L10n::t('Preview') : ''),
|
||||
'$indent' => $indent,
|
||||
'$sourceapp' => L10n::t($a->sourcename),
|
||||
|
|
|
@ -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);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue