You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
373 B
14 lines
373 B
5 years ago
|
$(document).on('turbolinks:load', function() {
|
||
|
var $modal = $('.modal.admin-message-modal');
|
||
|
if ($modal.length > 0) {
|
||
|
$modal.on('hide.bs.modal', function(){
|
||
|
$modal.find('.modal-body').html('');
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
function showMessageModal(html) {
|
||
|
var $modal = $('.modal.admin-message-modal');
|
||
|
$modal.find('.modal-body').html(html);
|
||
|
$modal.modal('show');
|
||
|
}
|