fixed an initialization error

This commit is contained in:
Stephan Hradek
2013-12-31 11:09:17 +01:00
parent ec14a0a16d
commit 917865c393
@@ -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 === ",") {