Use let instead of const

This commit is contained in:
Goh Jia Hao 2016-10-09 14:16:44 +08:00
parent d26d5b9bbe
commit 2529153ca1
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ document.addEventListener('DOMContentLoaded', () => {
window.addEventListener('contextmenu', event => {
event.preventDefault();
const targetElement = event.srcElement;
let targetElement = event.srcElement;
// the clicked element is the deepest in the DOM, and may not be the <a> bearing the href
// for example, <a href="..."><span>Google</span></a>