Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AIboy996 committed Sep 12, 2023
1 parent 6d47398 commit a64a765
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion docs/About/m.resume.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="resume.css">
<script src="resume.js"></script>
<title>Yang Zhang</title>
<script>
// When the user clicks on <div>, open the popup
function myFunction() {
var popup = document.getElementById("myPopup");
popup.classList.toggle("show");
}
</script>
</head>

<body>
Expand Down
5 changes: 5 additions & 0 deletions docs/About/resume.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
<link rel="stylesheet" href="resume.css">
<script src="resume.js"></script>
<script>
// When the user clicks on <div>, open the popup
function myFunction() {
var popup = document.getElementById("myPopup");
popup.classList.toggle("show");
}
var width = ((typeof screen !== 'undefined') ? screen.width : null)
|| window.innerWidth
|| document.documentElement.clientWidth
Expand Down
5 changes: 0 additions & 5 deletions docs/About/resume.js

This file was deleted.

0 comments on commit a64a765

Please sign in to comment.