///////////////////////////////////////////////////////////// // // pgAdmin 4 - PostgreSQL Tools // // Copyright (C) 2013 - 2020, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // ////////////////////////////////////////////////////////////// define( ['sources/gettext', 'underscore', 'alertify', 'sources/pgadmin'], function(gettext, _, alertify, pgAdmin) { pgAdmin.Browser = pgAdmin.Browser || {}; _.extend(pgAdmin.Browser, { report_error: function(title, message, info, callback) { title = _.escape(title); message = _.escape(message); info = _.escape(info); let text ='
' + '
' + '' + '
' + '
' + message + '
' + '
' + '
'; if (info != null && info != '') { text += '
' + '' + '
' + '
' + info + '
' + '
' + '
' + '
'; } text += ''; alertify.alert( title, text ) .set({'closable': true, 'onok': function() { if(callback) { callback(); } }, }); }, }); return pgAdmin.Browser.report_error; });