This commit is contained in:
Xavier J 2016-11-17 10:50:28 +01:00
parent 8195a57f9c
commit 893bfaef40

View file

@ -1,4 +1,7 @@
$(document).ready(function () {
$(document).on('page:load', init_modal_commentaire);
$(document).ready(init_modal_commentaire);
function init_modal_commentaire() {
var modal = $("#modalCommentairesDossierParChamp");
var body = modal.find(".modal-body");
var originalBody = body.html();
@ -10,4 +13,4 @@ $(document).ready(function () {
$("#modalCommentairesDossierParChamp").on("hidden.bs.modal", function (e) {
body.html(originalBody);
});
});
}