-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Programatically play the videos because Chrome blocks autoplay
- Loading branch information
1 parent
2889c43
commit c239162
Showing
2 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
import PageComponent from '../page-base/component'; | ||
|
||
export default PageComponent.extend({ | ||
elementId: 'page-speed' | ||
elementId: 'page-speed', | ||
|
||
didInsertElement() { | ||
this._super(...arguments); | ||
document.querySelectorAll('video').forEach(video => { | ||
video.play(); | ||
}); | ||
}, | ||
|
||
click() { | ||
document.querySelectorAll('video').forEach(video => { | ||
video.play(); | ||
}); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters