Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
map
/
Content
/
toastr
/
Edit File Name :
customalert.js
function MessageBoxTop(type, title, msg) { toastr.options = { "closeButton": true, "debug": false, "positionClass": "toast-bottom-right", "showDuration": "1000", "hideDuration": "1000", "timeOut": "5000", "extendedTimeOut": "1000", "showEasing": "swing", "hideEasing": "linear", "showMethod": "fadeIn", "hideMethod": "fadeOut" } toastr[type](msg, title); } function ShowMessage(type, msg) { var notific = $('html body div#toast-container'); if (notific.html()) { $(notific).remove(); // remove previously shown notifications msg } toastr.options = { "closeButton": true, "debug": false, "positionClass": "toast-bottom-right", "showDuration": "2000", "hideDuration": "1000", "timeOut": "5000", "extendedTimeOut": "1000", "showEasing": "swing", "hideEasing": "linear", "showMethod": "fadeIn", "hideMethod": "fadeOut" } toastr[type](msg); } function showNotification(type) { switch (type) { case 'success': ShowMessage(type, 'Success', 'Task completed successfully'); break; case 'duplicate': ShowMessage('warning', 'Warning', 'Data already exists'); break; case 'error': ShowMessage('warning', 'Warning', 'Error while processing the request'); break; default: ShowMessage('error', 'Error', 'Data not saved'); break; } }
Save