1
1
mirror of https://github.com/varkor/quiver.git synced 2024-09-17 17:09:31 +03:00

Fix support for Firefox and Safari

This commit is contained in:
varkor 2020-11-25 17:24:12 +00:00
parent 0f75ee6d3e
commit b1e914575d
2 changed files with 1 additions and 2 deletions

View File

@ -369,7 +369,6 @@ QuiverExport.tikz_cd = new class extends QuiverExport {
+ TIKZ_VERTICAL_MULTIPLIER ** 2 * Math.cos(edge.angle()) ** 2) ** 0.5);
if (edge.options.curve !== 0) {
has_curves = true;
parameters.push(
`curve={height=${
// Using a fixed multiplier for curves of any angle tends to work better

View File

@ -5261,7 +5261,7 @@ class Edge extends Cell {
for (const [key, value] of Object.entries(source)) {
if (typeof value === "object") {
target[key] ||= {};
target[key] = target[key] || {};
deep_assign(target[key], value);
} else {
target[key] = value;