mirror of
https://github.com/servo/servo.git
synced 2025-06-17 21:04:28 +00:00
Fix missing space in title of directory listings (#35837)
Signed-off-by: Stephen Muss <stephenmuss@gmail.com>
This commit is contained in:
parent
96554453b9
commit
e0952cadb1
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script>
|
||||||
function setData(directoryName, parentLink, rows) {
|
function setData(directoryName, parentLink, rows) {
|
||||||
document.title += directoryName;
|
document.title += " " + directoryName;
|
||||||
document.querySelector("h1").innerHTML += " " + directoryName;
|
document.querySelector("h1").innerHTML += " " + directoryName;
|
||||||
|
|
||||||
if (parentLink != "") {
|
if (parentLink != "") {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue