From 46ad5ae25dcdca22f53f8f736287bbe97a6a6e8a Mon Sep 17 00:00:00 2001 From: william Date: Mon, 8 Feb 2016 13:49:59 -0500 Subject: [PATCH] stuff --- lxc.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lxc.js b/lxc.js index 3d6223f..5469af3 100644 --- a/lxc.js +++ b/lxc.js @@ -186,16 +186,16 @@ Container.prototype.UpdateFromInfo = function(data){ var lxcORM = function(){ - var orm = this; + var that = this; var containers = {}; this.isReady = false; this.whenReady = []; this.list(function(data){ for(var idx = data.length; idx--;){ - orm.containers[data[idx].name] = new Container(data[idx]); + that.containers[data[idx].name] = new Container(data[idx]); if(idx===0){ - orm.callReady; + that.callReady; } } });