Fix lint errors

This commit is contained in:
Henrik Ingo
2018-01-01 15:27:33 +02:00
parent e92e02ccb4
commit 729651dd5d
3 changed files with 15 additions and 11 deletions

View File

@@ -2965,7 +2965,7 @@
// For example, when clicking on the button to launch speaker console, the button
// is immediately deleted from the DOM. In this case target is a DOM element when
// we get it, but turns out to be null if you try to actually do anything with it.
foo = target.id;
target.id;
}
catch(err) {
return;
@@ -2995,7 +2995,7 @@
gc.addEventListener( document, "click", function( event ) {
var target = event.target;
try {
foo = target.id;
target.id;
}
catch(err) {
return;