summaryrefslogtreecommitdiffstats
path: root/lib/output/modifiers/annotateText.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/output/modifiers/annotateText.js')
-rw-r--r--lib/output/modifiers/annotateText.js19
1 files changed, 9 insertions, 10 deletions
diff --git a/lib/output/modifiers/annotateText.js b/lib/output/modifiers/annotateText.js
index 2b4b439..490c228 100644
--- a/lib/output/modifiers/annotateText.js
+++ b/lib/output/modifiers/annotateText.js
@@ -59,19 +59,18 @@ function replaceText($, el, search, replace, text_only ) {
}
/**
- Annotate text using a list of GlossaryEntry
-
- @param {List<GlossaryEntry>}
- @param {String} glossaryFilePath
- @param {HTMLDom} $
-*/
+ * Annotate text using a list of GlossaryEntry
+ *
+ * @param {List<GlossaryEntry>}
+ * @param {String} glossaryFilePath
+ * @param {HTMLDom} $
+ */
function annotateText(entries, glossaryFilePath, $) {
entries.forEach(function(entry) {
- var entryId = entry.getID();
- var name = entry.getName();
+ var entryId = entry.getID();
+ var name = entry.getName();
var description = entry.getDescription();
-
- var searchRegex = new RegExp( '\\b(' + pregQuote(name.toLowerCase()) + ')\\b' , 'gi' );
+ var searchRegex = new RegExp( '\\b(' + pregQuote(name.toLowerCase()) + ')\\b' , 'gi' );
$('*').each(function() {
var $this = $(this);