From 7076486641506a71a9a36d4c3390ac42a948396e Mon Sep 17 00:00:00 2001 From: Nico G Date: Fri, 14 Feb 2020 12:20:29 +0100 Subject: [PATCH] Update tools.js (#830) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tools mit Redaxo 5.9 auf Grund von jQuery 3 nicht mehr funktionsfähig, daher auf Event rex:ready umstellen. https://jquery.com/upgrade-guide/3.0/#breaking-change-on-quot-ready-quot-fn-removed --- plugins/tools/assets/tools.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/tools/assets/tools.js b/plugins/tools/assets/tools.js index 7382d914..989533a5 100644 --- a/plugins/tools/assets/tools.js +++ b/plugins/tools/assets/tools.js @@ -1,4 +1,4 @@ -$(document).on('ready pjax:success',function() { +$(document).on('rex:ready',function() { var monthNames = [ "January", @@ -202,4 +202,4 @@ $(document).on('ready pjax:success',function() { } }) -}); \ No newline at end of file +});