(fix) Edition and access of attach URL in editor

pull/66/merge
Francis Lachapelle 2015-04-17 09:55:27 -04:00
parent 3872af35d1
commit 5847e086ec
2 changed files with 3 additions and 2 deletions

1
NEWS
View File

@ -17,6 +17,7 @@ Bug fixes
- fixed regression when loading the inbox for the first time - fixed regression when loading the inbox for the first time
- fixed serialization of the PreventInvitationsWhitelist settings - fixed serialization of the PreventInvitationsWhitelist settings
- fixed md4 support (for NTLM password changes) with GNU TLS - 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) 2.2.17a (2015-03-15)
-------------------- --------------------

View File

@ -123,7 +123,7 @@ function initializeDocumentHref() {
var documentLabel = $("documentLabel"); var documentLabel = $("documentLabel");
var documentUrl = $("attach"); var documentUrl = $("attach");
documentHref.on("click", onPopupDocumentWindow, false); documentHref.on("click", onPopupDocumentWindow);
if (documentUrl.value.length > 0) { if (documentUrl.value.length > 0) {
documentHref.appendChild(document.createTextNode(documentUrl.value)); documentHref.appendChild(document.createTextNode(documentUrl.value));
documentLabel.setStyle({ display: "block" }); documentLabel.setStyle({ display: "block" });
@ -131,7 +131,7 @@ function initializeDocumentHref() {
var changeUrlButton = $("changeAttachButton"); var changeUrlButton = $("changeAttachButton");
if (changeUrlButton) if (changeUrlButton)
changeUrlButton.on("click", onPopupAttachWindow, false); changeUrlButton.on("click", onPopupAttachWindow);
} }
function initializeClassificationMenu() { function initializeClassificationMenu() {