mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-14 11:05:41 +05:00
lucide icon update
This commit is contained in:
parent
51106c17de
commit
b49ceaba4f
@ -317,8 +317,7 @@ Version 4: Data URL when not a realtime link yet (new pad or "static" app)
|
||||
if (parsed.password || opts.password) { hash += 'p/'; }
|
||||
if (opts.embed) { hash += 'embed/'; }
|
||||
if (opts.present) { hash += 'present/'; }
|
||||
var versionHash = (typeof(opts.versionHash) !== "undefined") ? opts.versionHash : parsed.versionHash;
|
||||
|
||||
var versionHash = typeof(opts.versionHash) !== "undefined" ? opts.versionHash : parsed.versionHash;
|
||||
if (versionHash) {
|
||||
hash += 'hash=' + Crypto.b64RemoveSlashes(versionHash) + '/';
|
||||
}
|
||||
|
||||
@ -83,7 +83,6 @@ define([
|
||||
};
|
||||
|
||||
var showVersion = function (initial, position) {
|
||||
|
||||
v = getVersion(position, initial);
|
||||
if (initial) {
|
||||
v = Messages.oo_version_latest;
|
||||
@ -164,7 +163,6 @@ define([
|
||||
}
|
||||
|
||||
var nextId = hashes[id+1] ? hashes[id+1] : undefined;
|
||||
|
||||
var toHash = nextId ? nextId.hash : config.onlyoffice.lastHash;
|
||||
var fromHash = cp?.hash || 'NONE';
|
||||
|
||||
@ -177,7 +175,6 @@ define([
|
||||
resolve();
|
||||
});
|
||||
});
|
||||
|
||||
};
|
||||
|
||||
loadMoreOOHistory();
|
||||
@ -221,7 +218,6 @@ define([
|
||||
$next.prop('disabled', 'disabled');
|
||||
$fastNext.prop('disabled', 'disabled');
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
var loadingFalse = function () {
|
||||
@ -298,7 +294,6 @@ define([
|
||||
goBack();
|
||||
});
|
||||
}
|
||||
|
||||
goBack();
|
||||
};
|
||||
|
||||
@ -440,7 +435,7 @@ define([
|
||||
showVersion(false, position)
|
||||
});
|
||||
|
||||
// Go to next checkpoint
|
||||
// Go to previous checkpoint
|
||||
$fastPrev.click(function () {
|
||||
if (loading) { return; }
|
||||
loading = true;
|
||||
@ -458,7 +453,6 @@ define([
|
||||
position = 0;
|
||||
loading = false;
|
||||
});
|
||||
|
||||
onKeyDown = function (e) {
|
||||
var p = function () { e.preventDefault(); };
|
||||
if ([38, 39].indexOf(e.which) >= 0) { p(); return $next.click(); } // Right
|
||||
|
||||
@ -3214,7 +3214,6 @@ Uncaught TypeError: Cannot read property 'calculatedType' of null
|
||||
if (obj && obj.hash && obj.time) {
|
||||
hash = obj.hash;
|
||||
time = obj.time;
|
||||
|
||||
} else {
|
||||
var major = Object.keys(content.hashes).length;
|
||||
var cpIndex = getLastCp().index || 0;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user