Skip to content

Commit 305aefe

Browse files
author
=
committed
Fix bug
1 parent b0f3db7 commit 305aefe

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/resume.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,11 @@ document.getElementById('printButton').addEventListener('click', function () {
2828
printUnComments[i].style.display = "block";
2929
}
3030
window.print();
31+
for (let i = 0; i < printComments.length; i++) {
32+
printComments[i].style.display = "block";
33+
}
34+
for (let i = 0; i < printUnComments.length; i++) {
35+
printUnComments[i].style.display = "none";
36+
}
3137
});
3238

0 commit comments

Comments
 (0)