17 lines
351 B
JavaScript
17 lines
351 B
JavaScript
|
|
/**
|
|
* Default handling of UF modal error
|
|
*
|
|
* This script depends on uf-modal.js
|
|
*
|
|
* Target page: *
|
|
*/
|
|
|
|
$(document).ready(function() {
|
|
const handleModalError = function() {
|
|
$(this).ufModal('destroy');
|
|
$('body').on('renderError.ufModal', handleModalError);
|
|
}
|
|
$('body').on('renderError.ufModal', handleModalError);
|
|
});
|