miscellaneous cleanup and notes

pull/1/head
ansuz 3 years ago
parent d27cbb69dc
commit f7f2146fa5

@ -177,12 +177,12 @@
a { a {
color: @cryptpad_text_col; color: @cryptpad_text_col;
font-size: 0.8em; font-size: 0.8em;
&.cp-remote-img::before { &.cp-remote-img::before { // .fa.fa-question-circle
font-family: FontAwesome; font-family: FontAwesome;
//content: "\f08e\00a0"; //content: "\f08e\00a0";
content: "\f08e\00a0\00a0"; content: "\f08e\00a0\00a0";
} }
&.cp-learn-more::before { &.cp-learn-more::before { // .fa.fa-external-link
font-family: FontAwesome; font-family: FontAwesome;
content: "\f059\00a0"; content: "\f059\00a0";
//content: "\f059\00a0\00a0"; //content: "\f059\00a0\00a0";

@ -228,7 +228,7 @@ Pinning.resetUserPins = function (Env, safeKey, channelList, _cb) {
var session = Core.getSession(Env.Sessions, safeKey); var session = Core.getSession(Env.Sessions, safeKey);
if (!channelList.length) { // XXX wut if (!channelList.length) {
return void cb(); return void cb();
} }

@ -123,7 +123,7 @@ module.exports.create = function (config) {
maxWorkers: config.maxWorkers, maxWorkers: config.maxWorkers,
disableIntegratedTasks: config.disableIntegratedTasks || false, disableIntegratedTasks: config.disableIntegratedTasks || false,
disableIntegratedEviction: config.disableIntegratedEviction || false, disableIntegratedEviction: config.disableIntegratedEviction || true, // XXX false,
lastEviction: +new Date(), lastEviction: +new Date(),
evictionReport: {}, evictionReport: {},
commandTimers: {}, 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
};
};
*/

Loading…
Cancel
Save