Fixed toggleAbstract.
This commit is contained in:
10
index.html
10
index.html
@@ -5,6 +5,16 @@
|
||||
<link rel="stylesheet" href="fontawesome-free-5.15.3-web/css/all.css">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<title>Chen Yang</title>
|
||||
<script>
|
||||
function toggleAbstract(absId) {
|
||||
var x = document.getElementById(absId);
|
||||
if (x.style.display === "none") {
|
||||
x.style.display = "block";
|
||||
} else {
|
||||
x.style.display = "none";
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
|
||||
Reference in New Issue
Block a user