]> git.mxchange.org Git - friendica.git/blobdiff - view/templates/head.tpl
Merge pull request #9187 from MrPetovan/bug/9182-frio-modal-width
[friendica.git] / view / templates / head.tpl
index 707cdf79f00733114627cf4d2ac23d0952aaa581..69980b652bb8f4ec8b01344a6899ac30cdc910d0 100644 (file)
                $("#comment-edit-text-" + id).val(tmpStr + ins);
        }
 
-       function qCommentInsert(obj,id) {
-               var tmpStr = $("#comment-edit-text-" + id).val();
-               if (tmpStr == "") {
-                       $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
-                       $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
-                       openMenu("comment-edit-submit-wrapper-" + id);
-               }
-               var ins = $(obj).val();
-               ins = ins.replace("&lt;","<");
-               ins = ins.replace("&gt;",">");
-               ins = ins.replace("&amp;","&");
-               ins = ins.replace("&quot;","\"");
-               $("#comment-edit-text-" + id).val(tmpStr + ins);
-               $(obj).val("");
-       }
-
        function showHideCommentBox(id) {
                if ($("#comment-edit-form-" + id).is(":visible")) {
                        $("#comment-edit-form-" + id).hide();