From 5847e086ec803905d8225e064a9a5dfc38612761 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Fri, 17 Apr 2015 09:55:27 -0400 Subject: [PATCH] (fix) Edition and access of attach URL in editor --- NEWS | 1 + UI/WebServerResources/UIxComponentEditor.js | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 0e2955da5..10eb03724 100644 --- a/NEWS +++ b/NEWS @@ -17,6 +17,7 @@ Bug fixes - fixed regression when loading the inbox for the first time - fixed serialization of the PreventInvitationsWhitelist settings - fixed md4 support (for NTLM password changes) with GNU TLS + - fixed edition of attachment URL in event/task editor 2.2.17a (2015-03-15) -------------------- diff --git a/UI/WebServerResources/UIxComponentEditor.js b/UI/WebServerResources/UIxComponentEditor.js index 42d1cad0b..8208b597b 100644 --- a/UI/WebServerResources/UIxComponentEditor.js +++ b/UI/WebServerResources/UIxComponentEditor.js @@ -123,7 +123,7 @@ function initializeDocumentHref() { var documentLabel = $("documentLabel"); var documentUrl = $("attach"); - documentHref.on("click", onPopupDocumentWindow, false); + documentHref.on("click", onPopupDocumentWindow); if (documentUrl.value.length > 0) { documentHref.appendChild(document.createTextNode(documentUrl.value)); documentLabel.setStyle({ display: "block" }); @@ -131,7 +131,7 @@ function initializeDocumentHref() { var changeUrlButton = $("changeAttachButton"); if (changeUrlButton) - changeUrlButton.on("click", onPopupAttachWindow, false); + changeUrlButton.on("click", onPopupAttachWindow); } function initializeClassificationMenu() {