Skip to content

Commit e452141

Browse files
author
goatee-ci
committed
CI: Lint code
Lints code.
1 parent fbb021f commit e452141

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/core/Audio.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ export class Audio extends Element {
2424

2525
render() {
2626
let attrs = `preload="${this.preload}"`;
27-
if (this.controls) attrs += ` controls`;
28-
if (this.autoplay) attrs += ` autoplay`;
29-
if (this.loop) attrs += ` loop`;
30-
if (this.muted) attrs += ` muted`;
27+
if (this.controls) attrs += " controls";
28+
if (this.autoplay) attrs += " autoplay";
29+
if (this.loop) attrs += " loop";
30+
if (this.muted) attrs += " muted";
3131

3232
if (this.sources && Array.isArray(this.sources)) {
3333
const sourceTags = this.sources

0 commit comments

Comments
 (0)