Solve bindmethod deprecation warning

As mentioned at the jQuery 3.0 upgrade guide [1] the `bind` method is deprecated. Replace with `on` method.

[1] https://jquery.com/upgrade-guide/3.0/#deprecated-bind-and-delegate
This commit is contained in:
Senén Rodero Rodríguez
2020-08-17 13:16:39 +02:00
parent b8e352145c
commit b499c0dcdd

View File

@@ -1,3 +1,3 @@
$(".delete").bind("ajax:success", function () { $(".delete").on("ajax:success", function () {
$(this).closest("div").fadeOut() $(this).closest("div").fadeOut();
}) });