From 26a3d141acc9b65bc0b0dd03cccf6c7342025445 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Mon, 2 Jul 2018 15:15:54 +0900 Subject: [PATCH] Auto-close allowfullscreen attribute --- mixins/SoundTrack.pixy | 2 +- pages/anime/anime.pixy | 2 +- pages/soundtrack/soundtrack.pixy | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mixins/SoundTrack.pixy b/mixins/SoundTrack.pixy index 9eeb24eb..1737340c 100644 --- a/mixins/SoundTrack.pixy +++ b/mixins/SoundTrack.pixy @@ -50,4 +50,4 @@ component SoundTrackMiniFooter(track *arn.SoundTrack, user *arn.User) a(href=track.Link())= track.Title.ByUser(user) component ExternalMedia(media *arn.ExternalMedia) - iframe.lazy(data-src=media.EmbedLink(), allowfullscreen="allowfullscreen") \ No newline at end of file + iframe.lazy(data-src=media.EmbedLink(), allowfullscreen) \ No newline at end of file diff --git a/pages/anime/anime.pixy b/pages/anime/anime.pixy index 2d156a43..7b1c9f61 100644 --- a/pages/anime/anime.pixy +++ b/pages/anime/anime.pixy @@ -157,7 +157,7 @@ component AnimeTrailerByIndex(anime *arn.Anime, index int) section.anime-section.mountable(data-mountable-type="sidebar") h3.anime-section-name Trailer .anime-trailer.video-container - iframe.video(src="https://www.youtube.com/embed/" + anime.Trailers[index].ServiceID + "?showinfo=0", allowfullscreen="allowfullscreen") + iframe.video(src="https://www.youtube.com/embed/" + anime.Trailers[index].ServiceID + "?showinfo=0", allowfullscreen) component AnimeFriends(friends []*arn.User, listItems map[*arn.User]*arn.AnimeListItem) if len(friends) > 0 diff --git a/pages/soundtrack/soundtrack.pixy b/pages/soundtrack/soundtrack.pixy index 740c1f17..b742d39b 100644 --- a/pages/soundtrack/soundtrack.pixy +++ b/pages/soundtrack/soundtrack.pixy @@ -12,7 +12,7 @@ component SoundTrackPage(track *arn.SoundTrack, user *arn.User) .widget.mountable h3.widget-title= media.Service .soundtrack-media.video-container - iframe.lazy.video(data-src=media.EmbedLink(), allowfullscreen="allowfullscreen") + iframe.lazy.video(data-src=media.EmbedLink(), allowfullscreen) if user != nil && media.Service == "Youtube" && track.File != "" .buttons