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]';
|
echo $br . '[url]' . $url . '[/url]';
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
|
@ -799,8 +799,7 @@ class Post extends BaseObject
|
||||||
'$edquote' => L10n::t('Quote'),
|
'$edquote' => L10n::t('Quote'),
|
||||||
'$edcode' => L10n::t('Code'),
|
'$edcode' => L10n::t('Code'),
|
||||||
'$edimg' => L10n::t('Image'),
|
'$edimg' => L10n::t('Image'),
|
||||||
'$edurl' => L10n::t('Link'),
|
'$edurl' => L10n::t('Link or Media'),
|
||||||
'$edvideo' => L10n::t('Video'),
|
|
||||||
'$preview' => ((Feature::isEnabled($conv->getProfileOwner(), 'preview')) ? L10n::t('Preview') : ''),
|
'$preview' => ((Feature::isEnabled($conv->getProfileOwner(), 'preview')) ? L10n::t('Preview') : ''),
|
||||||
'$indent' => $indent,
|
'$indent' => $indent,
|
||||||
'$sourceapp' => L10n::t($a->sourcename),
|
'$sourceapp' => L10n::t($a->sourcename),
|
||||||
|
|
|
@ -2,12 +2,6 @@
|
||||||
* @brief The file contains functions for text editing and commenting
|
* @brief The file contains functions for text editing and commenting
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function initComment(callback) {
|
|
||||||
if (typeof callback != "undefined") {
|
|
||||||
callback();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function commentGetLink(id) {
|
function commentGetLink(id) {
|
||||||
reply = prompt("Please enter a link URL:");
|
reply = prompt("Please enter a link URL:");
|
||||||
if(reply && reply.length) {
|
if(reply && reply.length) {
|
||||||
|
@ -37,10 +31,7 @@ function commentlinkdrop(event, id) {
|
||||||
if(reply && reply.length) {
|
if(reply && reply.length) {
|
||||||
reply = bin2hex(reply);
|
reply = bin2hex(reply);
|
||||||
$.get('parse_url?isComment=1&binurl=' + reply, function(data) {
|
$.get('parse_url?isComment=1&binurl=' + reply, function(data) {
|
||||||
if (!editor) $("comment-edit-text-" + id).val("");
|
addcommenttext(data, id);
|
||||||
initComment(function(){
|
|
||||||
addcommenttext(data, id);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,12 +42,6 @@
|
||||||
<i class="fa fa-link"></i>
|
<i class="fa fa-link"></i>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</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>
|
<li>
|
||||||
<button type="button" class="btn-link icon underline" style="cursor: pointer;" aria-label="{{$eduline}}" title="{{$eduline}}" onclick="insertFormatting('u',{{$id}});">
|
<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>
|
<i class="fa fa-underline"></i>
|
||||||
|
|
Loading…
Reference in a new issue