aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-01-19 09:16:51 +0100
committerMario Vavti <mario@mariovavti.com>2018-01-19 09:16:51 +0100
commite9f32ef94e5cb188e86a8cf43f9580b462d0ea46 (patch)
tree553feae3fb0c8267262fb605b28857f412e57b41 /view/js
parent2cf4381e19a05c98c523422dce39753c7381229d (diff)
parent764d6e3407f75cbe7a6f9635dd40cd2cca0f2b4f (diff)
downloadvolse-hubzilla-e9f32ef94e5cb188e86a8cf43f9580b462d0ea46.tar.gz
volse-hubzilla-e9f32ef94e5cb188e86a8cf43f9580b462d0ea46.tar.bz2
volse-hubzilla-e9f32ef94e5cb188e86a8cf43f9580b462d0ea46.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'view/js')
-rw-r--r--view/js/main.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 0e3dcb0ec..3811ddc88 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -282,22 +282,6 @@ function viewsrc(id) {
$.colorbox({href: 'viewsrc/' + id, maxWidth: '80%', maxHeight: '80%' });
}
-function qCommentInsert(obj, id) {
- var tmpStr = $("#comment-edit-text-" + id).val();
- if(tmpStr == aStr.comment) {
- tmpStr = '';
- $("#comment-edit-text-" + id).addClass("expanded");
- 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 showHideComments(id) {
if( $('#collapsed-comments-' + id).is(':visible')) {
$('#collapsed-comments-' + id + ' .autotime').timeago('dispose');