зеркало из https://github.com/GoogleChrome/kino.git
More concise and elegant way of toggling a class name.
This commit is contained in:
Родитель
2e3d5d99f3
Коммит
a9b5fdc06a
|
@ -148,14 +148,8 @@ export default class extends HTMLElement {
|
|||
}
|
||||
|
||||
const targetName = castSession.getCastDevice().friendlyName;
|
||||
|
||||
if (targetName) {
|
||||
this.internal.root.querySelector(`.${CAST_TARGET_NAME}`).innerText = targetName;
|
||||
this.classList.add(CAST_HAS_TARGET_NAME);
|
||||
} else {
|
||||
this.classList.remove(CAST_HAS_TARGET_NAME);
|
||||
}
|
||||
|
||||
this.internal.root.querySelector(`.${CAST_TARGET_NAME}`).innerText = targetName;
|
||||
this.classList.toggle(CAST_HAS_TARGET_NAME, targetName);
|
||||
this.classList.add(CAST_CLASSNAME);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче