David or Shannon,
I tested this on Confluence EAP 2.8-m9-r3 and discovered that labels
are disabled on the add bookmark page. Probably something to do with
the UI changes in Confluence 2.8
Description
From Jonathan Nolen:
David or Shannon,
I tested this on Confluence EAP 2.8-m9-r3 and discovered that labels
are disabled on the add bookmark page. Probably something to do with
the UI changes in Confluence 2.8
This is fixed. The cause of the problem was the change in includes/js/labels-editor.js.
labels-editor.js
var labelsShowing = $('labelsShowing');
if (labelsShowing && labelsShowing.value == "true") {
toggleLabels();
}
The fix for MARK-62 stopped working for Confluence 2.8-m9-r3 because Confluence no longer expects a div with the ID labelsShowing. Confluence 2.8-m9-r3 expects the element with the ID labelsShowing to be an input field.
David Chui added a comment - 26/Mar/08 11:36 PM This is fixed. The cause of the problem was the change in includes/js/labels-editor.js.
labels-editor.js
var labelsShowing = $('labelsShowing');
if (labelsShowing && labelsShowing.value == "true") {
toggleLabels();
}
The fix for MARK-62 stopped working for Confluence 2.8-m9-r3 because Confluence no longer expects a div with the ID labelsShowing. Confluence 2.8-m9-r3 expects the element with the ID labelsShowing to be an input field.
The fix for
MARK-62stopped working for Confluence 2.8-m9-r3 because Confluence no longer expects a div with the ID labelsShowing. Confluence 2.8-m9-r3 expects the element with the ID labelsShowing to be an input field.