Headline
CVE-2022-0776: Fix DOM XSS · hakimel/reveal.js@32cdd3b
Cross-site Scripting (XSS) - DOM in GitHub repository hakimel/reveal.js prior to 4.3.0.
Permalink
Browse files
Fix DOM XSS
- Loading branch information
r0hanSH committed
Feb 26, 2022
1 parent e33c3c7 commit 32cdd3b1872ba8e2267c9e87ae216cb55f40f4d2
Showing with 4 additions and 0 deletions.
- +4 −0 plugin/notes/speaker-view.html
4 plugin/notes/speaker-view.html
Show comments View file
@@ -368,6 +368,10 @@ <h4 class="label">Notes</h4>
window.addEventListener( 'message’, function( event ) {
if (window.location.origin !== event.origin){
return;
}
clearTimeout( connectionTimeout );
connectionStatus.style.display = 'none’;
0 comments on commit 32cdd3b
Please sign in to comment.