Added support for custom UI folder

This commit is contained in:
Keivan Beigi 2015-07-21 19:42:38 -07:00
parent 760469fc5f
commit 98acd0d886
17 changed files with 192 additions and 131 deletions

View file

@ -4,9 +4,11 @@
var phantom = false;
process.argv.forEach(function (val, index, array) {
if(val=== '--phantom'){
if (val === '--phantom') {
phantom = true;
}
});
console.log('Phantom:', phantom);
module.exports = phantom;