mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Load asciicast css async (#22502)
Load asciicast css asynchronously. Related to #22448.
This commit is contained in:
		| @@ -2,7 +2,10 @@ export async function renderAsciinemaPlayer() { | |||||||
|   const els = document.querySelectorAll('.asciinema-player-container'); |   const els = document.querySelectorAll('.asciinema-player-container'); | ||||||
|   if (!els.length) return; |   if (!els.length) return; | ||||||
|  |  | ||||||
|   const player = await import(/* webpackChunkName: "asciinema-player" */'asciinema-player'); |   const [player] = await Promise.all([ | ||||||
|  |     import(/* webpackChunkName: "asciinema-player" */'asciinema-player'), | ||||||
|  |     import(/* webpackChunkName: "asciinema-player" */'asciinema-player/dist/bundle/asciinema-player.css'), | ||||||
|  |   ]); | ||||||
|  |  | ||||||
|   for (const el of els) { |   for (const el of els) { | ||||||
|     player.create(el.getAttribute('data-asciinema-player-src'), el, { |     player.create(el.getAttribute('data-asciinema-player-src'), el, { | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| @import "../asciinema-player/dist/bundle/asciinema-player.css"; |  | ||||||
|  |  | ||||||
| .asciinema-player-container { | .asciinema-player-container { | ||||||
|   width: 100%; |   width: 100%; | ||||||
|   height: auto; |   height: auto; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user