@ -177,12 +177,12 @@
a {
color: @cryptpad_text_col;
font-size: 0.8em;
&.cp-remote-img::before {
&.cp-remote-img::before { // .fa.fa-question-circle
font-family: FontAwesome;
//content: "\f08e\00a0";
content: "\f08e\00a0\00a0";
}
&.cp-learn-more::before {
&.cp-learn-more::before { // .fa.fa-external-link
content: "\f059\00a0";
//content: "\f059\00a0\00a0";
@ -228,7 +228,7 @@ Pinning.resetUserPins = function (Env, safeKey, channelList, _cb) {
var session = Core.getSession(Env.Sessions, safeKey);
if (!channelList.length) { // XXX wut
if (!channelList.length) {
return void cb();
@ -123,7 +123,7 @@ module.exports.create = function (config) {
maxWorkers: config.maxWorkers,
disableIntegratedTasks: config.disableIntegratedTasks || false,
disableIntegratedEviction: config.disableIntegratedEviction || false,
disableIntegratedEviction: config.disableIntegratedEviction || true, // XXX false,
lastEviction: +new Date(),
evictionReport: {},
commandTimers: {},
@ -79,14 +79,3 @@ Block.write = function (Env, publicKey, buffer, _cb) {
});
};
/*
Block.create = function (opt, _cb) {
var cb = Util.once(Util.mkAsync(_cb));
var env = {
root: opt.root || '', // XXX
*/