UNPKG

sweetalert2

Version:

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

15 lines (12 loc) 374 B
import * as dom from '../../dom/index' export const renderTitle = (params) => { const title = dom.getTitle() if (params.titleText) { title.innerText = params.titleText } else if (params.title) { if (typeof params.title === 'string') { params.title = params.title.split('\n').join('<br />') } dom.parseHtmlToContainer(params.title, title) } }