Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge for production #35

Merged
merged 24 commits into from
Jan 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/mirror-front-error-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Mirror Front Error Report
about: 镜像前端显示问题报告
title: "[MFR] Mirror Front End Error Report"
labels: bug
assignees: yaoge123

---

## Note
<!-- (Thanks for your report, please done the following and add x in `[ ]`) -->
- [ ] I understand that the issue raised here **is** related to the **front-end**.
- [ ] I understand that the issue raised here **is not** related to the **docmuent or files**.
- [ ] I have looked it up in opening issue, it's **not** reported by others.
- [ ] I have looked it up in closed issue, it's **not refused** for some reasons.

## Error Information
<!-- Description the **repo url**, **error inforation** and **how to update the doc.**-->



## Other Information
<!-- don't write things in comments. -->

- os with version [操作系统及版本]: <!-- eg: win11 22H2 -->
- browser with version [浏览器及版本]: <!-- eg: chrome 108.0.5359.125 -->
- appear time [大致出现问题的时间]: <!-- eg: 2023/01/01 17:40 -->
30 changes: 17 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NJU Mirror</title>
</head>

<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NJU Mirror</title>
</head>

<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>

</html>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script>
if (window.ActiveXObject || 'ActiveXObject' in window) {
document.getElementById('app').innerHTML =
'Internet Explorer is no longer supported. Please use modern browsers such as Chrome, Firefox, Edge, etc.';
}
</script>
</body>
</html>
Loading