[aggResponse/tabify] return nothing if no tables were created

This commit is contained in:
Spencer Alger 2014-11-03 12:05:26 -07:00
parent 665cbc013c
commit 99a7a4964c

View file

@ -168,6 +168,8 @@ define(function (require) {
if (this.canSplit) return this.root;
var table = this.root.tables[0];
if (!table) return;
delete table.$parent;
return table;
};