JSFiddle - React, Tailwind, and code Playground

by eddiemonge

JavaScript

window.alert = function(message, title) {
    $('<div/>', {
        title: title || '',
        html: message
    })
    .css('white-space', 'pre-line')
    .dialog({
        width: 355,
        height: 'auto',
        minWidth: 250,
        minHeight: 50,
        maxHeight: 8000,
        modal: true,
        zIndex: 999990,
        buttons: { ok: function() { $(this).dialog('close'); } }
    });
};

alert('Hello')