From 6684f9bfe8267709a67a3e0976ff831750b3b067 Mon Sep 17 00:00:00 2001 From: ilmar Date: Wed, 2 May 2018 11:45:48 +0300 Subject: [PATCH] hook callAll to aCallAll --- src/node/utils/ExportHtml.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node/utils/ExportHtml.js b/src/node/utils/ExportHtml.js index bd0ad12c2..e53c7a8db 100644 --- a/src/node/utils/ExportHtml.js +++ b/src/node/utils/ExportHtml.js @@ -360,7 +360,7 @@ function getHTMLFromAtext(pad, atext, authorColors) { nextLine = _analyzeLine(textLines[i + 1], attribLines[i + 1], apool); } - hooks.callAll('getLineHTMLForExport', context); + hooks.aCallAll('getLineHTMLForExport', context); //To create list parent elements if ((!prevLine || prevLine.listLevel !== line.listLevel) || (prevLine && line.listTypeName !== prevLine.listTypeName)) { @@ -445,7 +445,7 @@ function getHTMLFromAtext(pad, atext, authorColors) padId: pad.id }; - hooks.callAll("getLineHTMLForExport", context); + hooks.aCallAll("getLineHTMLForExport", context); pieces.push(context.lineContent, "
"); } }