| Current Path : /home/happyrenas/old/happy-and-pay.fr/assets/base/js/scripts/pages/ |
Linux webd005.cluster105.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 |
| Current File : /home/happyrenas/old/happy-and-pay.fr/assets/base/js/scripts/pages/modals.js |
"use strict";
// CONTACT MAP
var PageModals = function() {
var _init = function() {
$('#exampleModal2').on('show.bs.modal', function (event) {
var button = $(event.relatedTarget) // Button that triggered the modal
var recipient = button.data('whatever') // Extract info from data-* attributes
// If necessary, you could initiate an AJAX request here (and then do the updating in a callback).
// Update the modal's content. We'll use jQuery here, but you could use a data binding library or other methods instead.
var modal = $(this)
modal.find('.modal-title').text('New message to ' + recipient)
modal.find('.modal-body input').val(recipient)
});
}
return {
//main function to initiate the module
init: function() {
_init();
}
};
}();
$(document).ready(function() {
PageModals.init();
});