From e43b9359fc33684db7f94ebcb825cc78edc48fdb Mon Sep 17 00:00:00 2001 From: Hannes Mannerheim Date: Wed, 13 Jan 2016 20:54:17 +0100 Subject: [PATCH] quick fix fort the hidden urls issue, will fix properly later --- js/dom-functions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/dom-functions.js b/js/dom-functions.js index 584aab7..25f8fd3 100644 --- a/js/dom-functions.js +++ b/js/dom-functions.js @@ -2167,13 +2167,13 @@ function buildAttachmentHTML(attachments){ attachment_html = attachment_html + ''; urlsToHide.push(window.siteInstanceURL + 'attachment/' + this.id); // hide this attachment url from the queet text - urlsToHide.push(this.url); + // urlsToHide.push(this.url); attachmentNum++; } else if (this.mimetype == 'image/svg+xml') { attachment_html = attachment_html + ''; urlsToHide.push(window.siteInstanceURL + 'attachment/' + this.id); // hide this attachment url from the queet text - urlsToHide.push(this.url); + // urlsToHide.push(this.url); attachmentNum++; } });