X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Ffrio%2Fjs%2Ftextedit.js;h=bf68d0f5dcb41b9c375143974e2e5d7ee572fbcb;hb=a01bdbbe2d8000768c5496d2de660e87dca1ec32;hp=3bfec8cfe6ef7f3ff167c0184ec9de263dfe4979;hpb=ee006bdc187739ff64887117100d3621215beb6b;p=friendica.git diff --git a/view/theme/frio/js/textedit.js b/view/theme/frio/js/textedit.js index 3bfec8cfe6..bf68d0f5dc 100644 --- a/view/theme/frio/js/textedit.js +++ b/view/theme/frio/js/textedit.js @@ -2,17 +2,17 @@ * @brief The file contains functions for text editing and commenting */ -function commentGetLink(id) { - reply = prompt("Please enter a link URL:"); - if(reply && reply.length) { - reply = bin2hex(reply); - $.get('parse_url?isComment=1&binurl=' + reply, function(data) { - addcommenttext(data, id); - }); - } +function commentGetLink(id, prompttext) { + reply = prompt(prompttext); + if(reply && reply.length) { + reply = bin2hex(reply); + $.get('parse_url?noAttachment=1&binurl=' + reply, function(data) { + addCommentText(data, id); + }); + } } -function addcommenttext(data, id) { +function addCommentText(data, id) { // get the textfield var textfield = document.getElementById("comment-edit-text-" + id); // check if the textfield does have the default-value @@ -24,19 +24,19 @@ function addcommenttext(data, id) { autosize.update($("#comment-edit-text-" + id)); } -function commentlinkdrop(event, id) { +function commentLinkDrop(event, id) { var reply = event.dataTransfer.getData("text/uri-list"); event.target.textContent = reply; event.preventDefault(); if (reply && reply.length) { reply = bin2hex(reply); - $.get('parse_url?isComment=1&binurl=' + reply, function(data) { - addcommenttext(data, id); + $.get('parse_url?noAttachment=1&binurl=' + reply, function(data) { + addCommentText(data, id); }); } } -function commentlinkdropper(event) { +function commentLinkDropper(event) { var linkFound = event.dataTransfer.types.contains("text/uri-list"); if (linkFound) { event.preventDefault();