2015-11-09 17:15:51 +01:00
|
|
|
|
2015-10-29 17:22:57 +01:00
|
|
|
var ready = function () {
|
2015-11-16 16:16:08 +01:00
|
|
|
$("#liste_champ").on("ajax:success", "div", function(event, data, status, xhr) {
|
|
|
|
$(event.target).parents('.form-inline').fadeOut("slow", function() {
|
|
|
|
return $(this).remove();
|
|
|
|
});
|
|
|
|
});
|
2015-10-27 17:31:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
$(document).ready(ready);
|
|
|
|
$(document).on('page:load', ready);
|
|
|
|
|
2015-10-28 15:55:31 +01:00
|
|
|
|
|
|
|
|