pinafore/routes/_utils/showVideoDialog.js

14 lines
375 B
JavaScript
Raw Normal View History

2018-01-28 00:35:44 +00:00
import VideoDialog from '../_components/status/VideoDialog.html'
import { createDialogElement } from './dialogs'
2018-01-21 04:20:33 +00:00
2018-02-04 23:08:34 +00:00
export function showVideoDialog(poster, src, description) {
2018-01-21 04:20:33 +00:00
let videoDialog = new VideoDialog({
target: createDialogElement('Video dialog'),
2018-01-21 04:20:33 +00:00
data: {
poster: poster,
src: src,
2018-01-21 18:32:18 +00:00
description: description
2018-01-21 04:20:33 +00:00
}
})
videoDialog.show()
2018-01-21 04:20:33 +00:00
}