Archive: Namaste PHP AMQP framework v1.0 (2017-2020)
952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
This commit is contained in:
26
html/js/modules (optional)/enhanced-modals.js
Executable file
26
html/js/modules (optional)/enhanced-modals.js
Executable file
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
Enhanced Bootstrap Modals
|
||||
https://mdbootstrap.com
|
||||
office@mdbootstrap.com
|
||||
*/
|
||||
|
||||
$('body').on('shown.bs.modal', '.modal', function() {
|
||||
if($('.modal-backdrop').length) {
|
||||
} else {
|
||||
|
||||
$modal_dialog = $(this).children('.modal-dialog')
|
||||
|
||||
if($modal_dialog.hasClass('modal-side')) {
|
||||
$(this).addClass('modal-scrolling');
|
||||
$('body').addClass('scrollable');
|
||||
}
|
||||
|
||||
if($modal_dialog.hasClass('modal-frame')) {
|
||||
$(this).addClass('modal-content-clickable');
|
||||
$('body').addClass('scrollable');
|
||||
}
|
||||
}
|
||||
});
|
||||
$('body').on('hidden.bs.modal', '.modal', function() {
|
||||
$('body').removeClass('scrollable');
|
||||
});
|
||||
Reference in New Issue
Block a user