File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
src/resources/extensions/quarto/video Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,9 @@ All changes included in 1.9:
88
99- Update ` esbuild ` to 0.25.10
1010- Update ` deno ` to 2.4.5
11+
12+ ## Formats
13+
14+ ### ` html `
15+
16+ - ([ #13413 ] ( https://github.com/quarto-dev/quarto-cli/issues/13413 ) ): Fix uncentered play button in videos from cross-reference divs.
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ local videoJSBuilder = function(params)
160160 VIDEO_SHORTCODE_NUM_VIDEOJS = VIDEO_SHORTCODE_NUM_VIDEOJS + 1
161161 local id = " video_shortcode_videojs_video" .. VIDEO_SHORTCODE_NUM_VIDEOJS
162162
163- local SNIPPET = [[ <video id="{id}"{width}{height} class="video-js vjs-default-skin {fluid}" controls preload="auto" data-setup='{}' title="{title}"><source src="{src}"></video>]]
163+ local SNIPPET = [[ <video id="{id}"{width}{height} class="video-js vjs-default-skin vjs-big-play-centered {fluid}" controls preload="auto" data-setup='{}' title="{title}"><source src="{src}"></video>]]
164164 local snippet = params .snippet or SNIPPET
165165 snippet = replaceCommonAttributes (snippet , params )
166166 snippet = interpolate {
You can’t perform that action at this time.
0 commit comments