lucide icon update

This commit is contained in:
Zuzanna 2025-11-14 13:38:39 +01:00
parent 51106c17de
commit b49ceaba4f
3 changed files with 2 additions and 10 deletions

View File

@ -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) + '/';
}

View File

@ -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

View File

@ -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;