Fix up inconsistent usage of ' vs "
This commit is contained in:
parent
90c00c8e2c
commit
3a30f81009
1 changed files with 2 additions and 2 deletions
4
index.js
4
index.js
|
@ -179,9 +179,9 @@ class Tab extends EventEmitter {
|
|||
|
||||
if (badge) {
|
||||
span.innerHTML = badge;
|
||||
span.classList.remove('hidden');
|
||||
span.classList.remove("hidden");
|
||||
} else {
|
||||
span.classList.add('hidden');
|
||||
span.classList.add("hidden");
|
||||
}
|
||||
|
||||
this.emit("badge-changed", badge, this);
|
||||
|
|
Loading…
Add table
Reference in a new issue