Skip to content
Snippets Groups Projects
Commit 0d0c9830 authored by Julian Pustkuchen's avatar Julian Pustkuchen
Browse files

Issue #3342445: jQuery .live() is deprecated

parent 2d50722f
No related branches found
No related tags found
1 merge request!1Issue #3342445: jQuery .live() is deprecated
......@@ -69,7 +69,7 @@
// Hide on animation click!
if (Drupal.settings.jquery_loadinganimation.close_on_click) {
$("div#loadinganimation").live('click', function() {
$(document).on('click', "div#loadinganimation", function() {
Drupal.behaviors.jquery_loadinganimation.Loadinganimation.hide();
});
}
......@@ -165,4 +165,4 @@
context, settings.jquery_loadinganimation);
}
};
})(jQuery);
\ No newline at end of file
})(jQuery);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment