print-window-tiddler
Stephan Hradek 2013-12-29 23:51:22 +01:00
rodzic bd7db62da0
commit 8e080eac0a
1 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -51,6 +51,16 @@ var processRow = function(prevColumns) {
colSpanCount++;
// Move to just before the `|` terminating the cell
this.parser.pos = cellRegExp.lastIndex - 1;
} else if(cellMatch[1] === "<" && prevCell) {
try {
colSpanCount = 1+prevCell.attributes.colspan.value;
} catch (e) {
colSpanCount = 2;
}
$tw.utils.addAttributeToParseTreeNode(prevCell,"colspan",colSpanCount);
colSpanCount = 1;
// Move to just before the `|` terminating the cell
this.parser.pos = cellRegExp.lastIndex - 1;
} else if(cellMatch[2]) {
// End of row
if(prevCell && colSpanCount > 1) {