This commit is contained in:
Christopher Jeffrey 2015-08-05 05:06:07 -07:00
parent 0d86165122
commit b068a8d036
1 changed files with 0 additions and 8 deletions

View File

@ -26,14 +26,6 @@ function Node(options) {
options = options || {};
this.options = options;
/*
this.screen = this.screen
|| options.screen
|| (options.parent && options.parent.screen)
|| require('./screen').global
|| (function(){throw new Error('No active screen.')})();
*/
var element;
if (!options.screen && options.parent) {
element = options.parent;