1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-29 23:40:45 +00:00

fixed an initialization error

This commit is contained in:
Stephan Hradek 2013-12-31 11:09:17 +01:00
parent ec14a0a16d
commit 917865c393

View File

@ -76,7 +76,7 @@ var processRow = function(prevColumns) {
// Look for a space at the start of the cell
var spaceLeft = false,
chr = this.parser.source.substr(this.parser.pos,1);
var vAlign;
var vAlign = null;
if (chr === "^") {
vAlign = "top";
} else if(chr === ",") {