- Issue was unassigned.
- Status changed to Fixed
over 1 year ago 1:42pm 7 March 2023 Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
over 1 year ago 10:47am 24 May 2023
Switch selectors on the js-video-player-icon
class for:
if (
$(this)
.closest(".media")
.find(".varbase-video-player > video")
.length > 0
) {
$(this)
.closest(".media")
.find(".varbase-video-player > video")
.get(0)
.play();
}
if (
$(this)
.closest(".media")
.find('.varbase-video-player > iframe[src*="youtube.com"]')
.length > 0
) {
const closestYoutubeIframe = $(this)
.closest(".media")
.find('.varbase-video-player > iframe[src*="youtube.com"]')
.get(0).contentWindow;
closestYoutubeIframe.postMessage("play", "*");
}
if (
$(this)
.closest(".media")
.find('.varbase-video-player > iframe[src*="vimeo.com"]'
).length > 0
) {
const closestVimeoIframe = $(this)
.closest(".media")
.find('.varbase-video-player > iframe[src*="vimeo.com"]')
.get(0).contentWindow;
closestVimeoIframe.postMessage("play", "*");
}
Fixed
10.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.