Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
[Bug] 表格线条缺失
Browse files Browse the repository at this point in the history
Fixes #565
  • Loading branch information
Chen LangNing committed Oct 2, 2023
1 parent bbc08b5 commit a43b030
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions XMOJ.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -1223,6 +1223,11 @@ else {
RefreshCount();
addEventListener("focus", RefreshCount);
}

let Tables = document.getElementsByTagName("table");
for (let i = 0; i < Tables.length; i++) {
TidyTable(Tables[i]);
}
}
Style.innerHTML += "code, kbd, pre, samp {";
Style.innerHTML += " font-family: monospace, Consolas, 'Courier New';";
Expand Down

0 comments on commit a43b030

Please sign in to comment.