(fix) Edition and access of attach URL in editor

This commit is contained in:
Francis Lachapelle
2015-04-17 09:55:27 -04:00
parent 3872af35d1
commit 5847e086ec
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -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() {