20 lines
		
	
	
	
		
			534 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			534 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import ImageDialog from '../components/ImageDialog.html'
 | 
						|
import { createDialogElement } from '../helpers/createDialogElement'
 | 
						|
import { createDialogId } from '../helpers/createDialogId'
 | 
						|
 | 
						|
export default function showImageDialog (poster, src, type, width, height, description) {
 | 
						|
  let imageDialog = new ImageDialog({
 | 
						|
    target: createDialogElement(),
 | 
						|
    data: {
 | 
						|
      id: createDialogId(),
 | 
						|
      label: 'Image dialog',
 | 
						|
      poster,
 | 
						|
      src,
 | 
						|
      type,
 | 
						|
      width,
 | 
						|
      height,
 | 
						|
      description
 | 
						|
    }
 | 
						|
  })
 | 
						|
  imageDialog.show()
 | 
						|
}
 |