lint compliance

pull/1/head
yflory 4 years ago
parent 0eba56a23e
commit 25606b92bf

@ -253,9 +253,9 @@ const getOlderHistory = function (data, cb) {
if (typeof (desiredMessages) === "number") { if (typeof (desiredMessages) === "number") {
toSend = messages.slice(-desiredMessages); toSend = messages.slice(-desiredMessages);
} else if (untilHash) { } else if (untilHash) {
for (var i = messages.length - 1; i >= 0; i--) { for (var j = messages.length - 1; j >= 0; j--) {
toSend.unshift(messages[i]); toSend.unshift(messages[j]);
if (Array.isArray(messages[i]) && HK.getHash(messages[i][4]) === untilHash) { if (Array.isArray(messages[j]) && HK.getHash(messages[j][4]) === untilHash) {
break; break;
} }
} }

@ -2,9 +2,7 @@ define([
'jquery', 'jquery',
'/common/common-interface.js', '/common/common-interface.js',
'/common/hyperscript.js', '/common/hyperscript.js',
'/bower_components/nthen/index.js', ], function ($, UI, h) {
//'/bower_components/chainpad-json-validator/json-ot.js',
], function ($, UI, h, nThen, /* JsonOT */) {
//var ChainPad = window.ChainPad; //var ChainPad = window.ChainPad;
var History = {}; var History = {};
@ -21,7 +19,6 @@ define([
var cpIndex = -1; var cpIndex = -1;
var msgIndex = 0; var msgIndex = 0;
var sortedCp;
var ooMessages = {}; var ooMessages = {};
var loading = false; var loading = false;
var update = function () {}; var update = function () {};
@ -43,7 +40,9 @@ define([
if (endWithCp) { cpIndex = 0; } if (endWithCp) { cpIndex = 0; }
var $loadMore, $version, $time; var $version, $time;
var $hist = $toolbar.find('.cp-toolbar-history');
var $bottom = $toolbar.find('.cp-toolbar-bottom');
var showVersion = function (initial) { var showVersion = function (initial) {
var major = sortedCp.length - cpIndex; var major = sortedCp.length - cpIndex;
@ -117,18 +116,6 @@ define([
}); });
}; };
// config.setHistory(bool, bool)
// - bool1: history value
// - bool2: reset old content?
var render = function (val) {
if (typeof val === "undefined") { return; }
try {
config.applyVal(val);
} catch (e) {
// Probably a parse error
console.error(e);
}
};
var onClose = function () { config.setHistory(false); }; var onClose = function () { config.setHistory(false); };
var onRevert = function () { var onRevert = function () {
config.onRevert(); config.onRevert();
@ -138,13 +125,7 @@ define([
var Messages = common.Messages; var Messages = common.Messages;
var realtime;
var states = []; var states = [];
var c = 0;//states.length - 1;
var $hist = $toolbar.find('.cp-toolbar-history');
var $bottom = $toolbar.find('.cp-toolbar-bottom');
$hist.html('').css('display', 'flex'); $hist.html('').css('display', 'flex');
$bottom.hide(); $bottom.hide();
@ -263,6 +244,11 @@ define([
}); });
}); });
// Versioned link
$share.click(function () {
// XXX
});
// Push one patch // Push one patch
$next.click(function () { $next.click(function () {
if (loading) { return; } if (loading) { return; }
@ -270,13 +256,6 @@ define([
next(); next();
update(); update();
}); });
// Reset current checkpoint
/*$prev.click(function () {
if (loading) { return; }
loading = true;
loadMoreOOHistory();
update();
});*/
// Go to previous checkpoint // Go to previous checkpoint
$fastNext.click(function () { $fastNext.click(function () {
if (loading) { return; } if (loading) { return; }

Loading…
Cancel
Save