demarches-normaliennes/app/assets/javascripts/procedure.js

15 lines
307 B
JavaScript
Raw Normal View History

2015-11-09 17:15:51 +01:00
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);