More coding style consistency

This commit is contained in:
Jermolene
2014-01-03 10:54:00 +00:00
parent 1a74e2538c
commit 027421f5e6
3 changed files with 3 additions and 3 deletions

View File

@@ -149,7 +149,7 @@ exports.parse = function() {
this.parser.pos = rowMatch.index + rowMatch[0].length;
} else {
// Otherwise, create a new row if this one is of a different type
if(rowType != currRowType) {
if(rowType !== currRowType) {
rowContainer = {type: "element", tag: rowContainerTypes[rowType], children: []};
table.children.push(rowContainer);
currRowType = rowType;