Updated the public API to no-longer extract nodes

This commit is contained in:
Colin Eberhardt
2015-08-13 08:39:28 +01:00
parent 0de0186fbd
commit f9bb74aedf
9 changed files with 121 additions and 88 deletions

View File

@@ -20,9 +20,7 @@
// @@include('./Layout.js')
return function(node) {
node = computeLayout.fillNodes(node);
computeLayout.fillNodes(node);
computeLayout.computeLayout(node);
node = computeLayout.extractNodes(node);
return node;
};
}));