From fa8199bc75807d169fda77724cedf07bda159563 Mon Sep 17 00:00:00 2001 From: ansuz Date: Tue, 20 Sep 2016 16:22:00 +0200 Subject: [PATCH] don't try to use experimental user code --- www/common/cryptpad-common.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/www/common/cryptpad-common.js b/www/common/cryptpad-common.js index b740f9585..ecc355e34 100644 --- a/www/common/cryptpad-common.js +++ b/www/common/cryptpad-common.js @@ -497,12 +497,15 @@ define([ Store.ready(function (err, store) { common.store = env.store = store; + cb(); + return; +/* authorize(function (err, proxy) { /* TODO listen for log(in|out) events update information accordingly - */ + * / store.change(function (data) { if (data.key === User.localKey) { @@ -536,7 +539,7 @@ define([ userStore = env.userStore = User.prepareStore(proxy); cb(); - }); + }); */ }); };