44a573b6c4
- Add ability to play/pause by using `converse-rich-text` - Make `converse-rich-text` component configurable whether the media URLs for GIF/audio/video are shown - Add fallback options for GIFs that have errors
5 lines
216 B
JavaScript
5 lines
216 B
JavaScript
import { html } from "lit";
|
|
|
|
export default (url, hide_url) =>
|
|
html`<video controls preload="metadata" src="${url}"></video>${ hide_url ? '' : html`<a target="_blank" rel="noopener" href="${url}">${url}</a>` }`;
|