fix indentation
This commit is contained in:
parent
4d11e49878
commit
e9b22e8ac3
|
@ -403,19 +403,20 @@ function getHTMLFromAtext(pad, atext)
|
||||||
lists.length--;
|
lists.length--;
|
||||||
}
|
}
|
||||||
var lineContentFromHook = hooks.callAllStr("getLineHTMLForExport",
|
var lineContentFromHook = hooks.callAllStr("getLineHTMLForExport",
|
||||||
{
|
{
|
||||||
line: line,
|
line: line,
|
||||||
apool: apool,
|
apool: apool,
|
||||||
attribLine: attribLines[i],
|
attribLine: attribLines[i],
|
||||||
text: textLines[i]
|
text: textLines[i]
|
||||||
}, " ", " ", "");
|
}, " ", " ", "");
|
||||||
if (lineContentFromHook)
|
if (lineContentFromHook)
|
||||||
{
|
{
|
||||||
pieces.push(lineContentFromHook, '');
|
pieces.push(lineContentFromHook, '');
|
||||||
} else
|
}
|
||||||
{
|
else
|
||||||
pieces.push(lineContent, '<br>');
|
{
|
||||||
}
|
pieces.push(lineContent, '<br>');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue