X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Ffrio%2Fjs%2Ftextedit.js;h=e0c06af581f134ce8a7e9750beab82d0c0488336;hb=ba03ec857ae1b83e82819eb883f4c99aa6a739ca;hp=76a04a32f2887b49913c6e80bed291184c692881;hpb=bd03278ee9470f7a2adb1c2aa30d2cea8136aa31;p=friendica.git diff --git a/view/theme/frio/js/textedit.js b/view/theme/frio/js/textedit.js index 76a04a32f2..e0c06af581 100644 --- a/view/theme/frio/js/textedit.js +++ b/view/theme/frio/js/textedit.js @@ -46,34 +46,34 @@ function commentGetLink(id, prompttext) { } function addCommentText(data, id) { - // get the textfield - var textfield = document.getElementById("comment-edit-text-" + id); - // check if the textfield does have the default-value - commentOpenUI(textfield, id); - // save already existent content - var currentText = $("#comment-edit-text-" + id).val(); - //insert the data as new value - textfield.value = currentText + data; - autosize.update($("#comment-edit-text-" + id)); + // get the textfield + var textfield = document.getElementById("comment-edit-text-" + id); + // check if the textfield does have the default-value + commentOpenUI(textfield, id); + // save already existent content + var currentText = $("#comment-edit-text-" + id).val(); + //insert the data as new value + textfield.value = currentText + data; + autosize.update($("#comment-edit-text-" + 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?noAttachment=1&binurl=' + reply, function(data) { + var reply = event.dataTransfer.getData("text/uri-list"); + event.target.textContent = reply; + event.preventDefault(); + if (reply && reply.length) { + reply = bin2hex(reply); + $.get('parse_url?noAttachment=1&binurl=' + reply, function(data) { addCommentText(data, id); - }); - } + }); + } } function commentLinkDropper(event) { - var linkFound = event.dataTransfer.types.contains("text/uri-list"); - if (linkFound) { - event.preventDefault(); - } + var linkFound = event.dataTransfer.types.contains("text/uri-list"); + if (linkFound) { + event.preventDefault(); + } }