diff options
author | John McLear <john@mclear.co.uk> | 2013-01-22 23:37:53 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2013-01-22 23:37:53 +0000 |
commit | f1b9c213eef910f7f4b94e40b526206aa9763b35 (patch) | |
tree | 2577291ea0df0a06fb3c57447dbf9a2dd7382c5c /src/node/utils/padDiff.js | |
parent | 3fb2f02875bfd0da7097a3fa021c7959bde1811b (diff) | |
download | etherpad-lite-f1b9c213eef910f7f4b94e40b526206aa9763b35.zip |
and semi working
Diffstat (limited to 'src/node/utils/padDiff.js')
-rw-r--r-- | src/node/utils/padDiff.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/node/utils/padDiff.js b/src/node/utils/padDiff.js index f898cbe1..b1fa9277 100644 --- a/src/node/utils/padDiff.js +++ b/src/node/utils/padDiff.js @@ -244,14 +244,17 @@ PadDiff.prototype.getHtml = function(callback){ }, //get the authorColor table function(callback){ - self._pad.getAllAuthorColors(function(err, _authorColors){ + /* + self._pad.getAllAuthorColors(function(err, _authorColors){ // TODO if(err){ return callback(err); } authorColors = _authorColors; - callback(); }); + */ + authorColors = {}; + callback(); }, //convert the atext to html function(callback){ |