is isOverPinLimit in toolbar

This commit is contained in:
ansuz 2017-06-26 18:13:06 +02:00
parent fce0a37f50
commit 9195c0cd12

View File

@ -664,13 +664,17 @@ define([
}); });
} }
}; };
var limit = Cryptpad.account.limit;
var usage = Cryptpad.account.usage; Cryptpad.isOverPinLimit(function (e, isOver, data) {
if (typeof(limit) !== 'number' || typeof(usage) !== 'number') { var limit = data.limit;
todo("invalid types"); var usage = data.usage;
} else if (Cryptpad.isLoggedIn() && usage >= limit) { if (typeof(limit) !== 'number' || typeof(usage) !== 'number') {
todo(void 0, true); todo("invalid types");
} else { todo(void 0, false); } } else if (Cryptpad.isLoggedIn() && usage >= limit) {
todo(void 0, true);
} else { todo(void 0, false); }
});
return $limit; return $limit;
}; };