-
+
@@ -20,14 +24,15 @@
target="_blank"
rel="sponsored noopener"
title="Vue.js Courses on Vue Mastery"
- >Vue Mastery.
- Watch Vue Mastery’s free
+ >Vue Mastery. Watch Vue Mastery’s free
Intro to Vue course.
+ >Intro to Vue course.
@@ -47,7 +52,7 @@ export default {
}),
methods: {
- initVideoModal () {
+ initVideoModal() {
const modalButton = document.querySelector(this.triggerSelector)
const player = new Vimeo.Player(this.$refs.videoIframe)
@@ -59,7 +64,11 @@ export default {
})
document.body.addEventListener('click', event => {
- if (this.isOpen && event.target !== modalButton && !this.$refs.modal.contains(event.target)) {
+ if (
+ this.isOpen &&
+ event.target !== modalButton &&
+ !this.$refs.modal.contains(event.target)
+ ) {
this.isOpen = false
document.body.classList.remove('stop-scroll')
player.pause()
@@ -68,7 +77,7 @@ export default {
}
},
- mounted () {
+ mounted() {
if (typeof window !== 'undefined') {
this.initVideoModal()
}
@@ -77,7 +86,7 @@ export default {