UNPKG

@obatfr/sweetalert2

Version:

A beautiful, responsive, customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes, supported fork of sweetalert

25 lines (18 loc) 601 B
import { swalClasses } from '../../classes.js' import * as dom from '../../dom/index.js' export const renderImage = (instance, params) => { const image = dom.getImage() if (!params.imageUrl) { return dom.hide(image) } dom.show(image, '') // Src, alt image.setAttribute('src', params.imageUrl) image.setAttribute('alt', params.imageAlt) // Width, height dom.applyNumericalStyle(image, 'width', params.imageWidth) dom.applyNumericalStyle(image, 'height', params.imageHeight) // Class image.className = swalClasses.image dom.applyCustomClass(image, params, 'image') }