fix indentation

pull/943/head
Gedion 2012-08-11 15:44:42 -05:00
parent 4d11e49878
commit e9b22e8ac3
1 changed files with 14 additions and 13 deletions

View File

@ -403,19 +403,20 @@ function getHTMLFromAtext(pad, atext)
lists.length--;
}
var lineContentFromHook = hooks.callAllStr("getLineHTMLForExport",
{
line: line,
apool: apool,
attribLine: attribLines[i],
text: textLines[i]
}, " ", " ", "");
if (lineContentFromHook)
{
pieces.push(lineContentFromHook, '');
} else
{
pieces.push(lineContent, '<br>');
}
{
line: line,
apool: apool,
attribLine: attribLines[i],
text: textLines[i]
}, " ", " ", "");
if (lineContentFromHook)
{
pieces.push(lineContentFromHook, '');
}
else
{
pieces.push(lineContent, '<br>');
}
}
}