Fix lightbox errors
parent
c29b7d3389
commit
0f21f3118b
|
@ -140,6 +140,7 @@
|
|||
}
|
||||
pre.mermaid {
|
||||
overflow: unset;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.cp-spinner {
|
||||
border-color: @colortheme_logo-1;
|
||||
|
|
|
@ -299,9 +299,11 @@ define([
|
|||
|
||||
show(i);
|
||||
var previous = function () {
|
||||
if (i === 0) { return; }
|
||||
show(i - 1);
|
||||
};
|
||||
var next = function () {
|
||||
if (i === tags.length - 1) { return; }
|
||||
show(i + 1);
|
||||
};
|
||||
$left.click(previous);
|
||||
|
|
Loading…
Reference in New Issue