pinafore/routes/_components/dialog/showImageDialog.js

19 lines
418 B
JavaScript
Raw Normal View History

2018-02-05 17:43:45 +00:00
import ImageDialog from './ImageDialog.html'
2018-04-01 01:46:44 +00:00
import { createDialogElement } from './createDialogElement'
2018-02-09 06:29:29 +00:00
export function showImageDialog (poster, src, type, width, height, description) {
let imageDialog = new ImageDialog({
2018-04-01 01:46:44 +00:00
target: createDialogElement(),
data: {
label: 'Image dialog',
poster,
src,
type,
width,
height,
description
}
})
imageDialog.show()
2018-02-09 06:29:29 +00:00
}