demarches-normaliennes/app/assets/javascripts/procedure.js
2015-11-17 11:28:00 +01:00

14 lines
307 B
JavaScript

var ready = function () {
$("#liste_champ").on("ajax:success", "div", function(event, data, status, xhr) {
$(event.target).parents('.form-inline').fadeOut("slow", function() {
return $(this).remove();
});
});
};
$(document).ready(ready);
$(document).on('page:load', ready);