diff options
author | Mario <mario@mariovavti.com> | 2023-06-18 09:20:57 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-06-18 09:20:57 +0000 |
commit | e49d2f6b8f0dc9039b9c1435a4e2f99c783a9ab1 (patch) | |
tree | c82210428fffba1851d52c3624fe3f141ccce111 /view/tpl/msg-header.tpl | |
parent | 9550a7a954b4c9267aa75fa5083a96a65dd65808 (diff) | |
download | volse-hubzilla-e49d2f6b8f0dc9039b9c1435a4e2f99c783a9ab1.tar.gz volse-hubzilla-e49d2f6b8f0dc9039b9c1435a4e2f99c783a9ab1.tar.bz2 volse-hubzilla-e49d2f6b8f0dc9039b9c1435a4e2f99c783a9ab1.zip |
remove deprecated templates
Diffstat (limited to 'view/tpl/msg-header.tpl')
-rw-r--r-- | view/tpl/msg-header.tpl | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/view/tpl/msg-header.tpl b/view/tpl/msg-header.tpl deleted file mode 100644 index d49303453..000000000 --- a/view/tpl/msg-header.tpl +++ /dev/null @@ -1,82 +0,0 @@ -{{** -<script src="vendor/blueimp/jquery-file-upload/js/vendor/jquery.ui.widget.js"></script> -<script src="vendor/blueimp/jquery-file-upload/js/jquery.iframe-transport.js"></script> -<script src="vendor/blueimp/jquery-file-upload/js/jquery.fileupload.js"></script> -<script> - $(document).ready(function() { - - $("#prvmail-text").editor_autocomplete(baseurl+"/acl"); - - $('#invisible-wall-file-upload').fileupload({ - url: 'wall_attach/{{$nickname}}', - dataType: 'json', - dropZone: $('#prvmail-text'), - maxChunkSize: 4 * 1024 * 1024, - add: function(e,data) { - $('#prvmail-rotator').show(); - data.submit(); - }, - done: function(e,data) { - addmailtext(data.result.message); - $('#jot-media').val($('#jot-media').val() + data.result.message); - }, - stop: function(e,data) { - preview_mail(); - $('#prvmail-rotator').hide(); - }, - }); - - $('#prvmail-attach-wrapper').click(function(event) { event.preventDefault(); $('#invisible-wall-file-upload').trigger('click'); return false;}); - $('#prvmail-attach-sub').click(function(event) { event.preventDefault(); $('#invisible-wall-file-upload').trigger('click'); return false;}); - - - }); - - function prvmailJotGetLink() { - reply = prompt("{{$linkurl}}"); - if(reply && reply.length) { - $('#prvmail-rotator').show(); - $.get('linkinfo?f=&url=' + reply, function(data) { - addmailtext(data); - preview_mail(); - $('#prvmail-rotator').hide(); - }); - } - } - - function prvmailGetExpiry() { - reply = prompt("{{$expireswhen}}", $('#inp-prvmail-expires').val()); - if(reply && reply.length) { - $('#inp-prvmail-expires').val(reply); - } - } - - function linkdropper(event) { - var linkFound = event.dataTransfer.types.contains("text/uri-list"); - if(linkFound) - event.preventDefault(); - } - - function linkdrop(event) { - var reply = event.dataTransfer.getData("text/uri-list"); - event.target.textContent = reply; - event.preventDefault(); - if(reply && reply.length) { - $('#prvmail-rotator').show(); - $.get('linkinfo?f=&url=' + reply, function(data) { - addmailtext(data); - preview_mail(); - $('#prvmail-rotator').hide(); - }); - } - } - - function addmailtext(data) { - var currentText = $("#prvmail-text").val(); - $("#prvmail-text").val(currentText + data); - } - - - -</script> -**}} |