summaryrefslogtreecommitdiff
path: root/includes/functions/functions_print.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/functions/functions_print.php')
-rw-r--r--includes/functions/functions_print.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/functions/functions_print.php b/includes/functions/functions_print.php
index 0a5cbe26e0..c902b5265e 100644
--- a/includes/functions/functions_print.php
+++ b/includes/functions/functions_print.php
@@ -424,11 +424,12 @@ function print_note_record($text, $nlevel, $nrec, $textOnly=false) {
} else {
// A multi-line note, with an expand/collapse option
$element_id = uniqid('n-');
+ // NOTE: class "note-details" is (currently) used only by some third-party themes
return
'<div class="fact_NOTE"><span class="label">' .
'<a href="#" onclick="expand_layer(\'' . $element_id . '\'); return false;"><i id="' . $element_id . '_img" class="icon-plus"></i></a> ' . WT_Gedcom_Tag::getLabel($label) . ': ' .
'</div>' .
- '<div id="' . $element_id . '" style="display:none">' . $html . '</div>';
+ '<div class="note-details" id="' . $element_id . '" style="display:none">' . $html . '</div>';
}
}