aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/lib/scripts/script.js
diff options
context:
space:
mode:
authorPhy <git@phy25.com>2020-02-23 23:22:29 -0500
committerPhy <git@phy25.com>2020-02-23 23:22:29 -0500
commit050990ca534058e4afb63946bd6b4e5386c3806a (patch)
tree1d1209e690e9cac1899b42ef464f56f5345334e6 /lib/scripts/script.js
parent6cb645bfb16d8eff5581621f5182fb8025e8182f (diff)
downloaddokuwiki-050990ca534058e4afb63946bd6b4e5386c3806a.tar.gz
dokuwiki-050990ca534058e4afb63946bd6b4e5386c3806a.zip
jquery-migrate: replace on()/trigger() shorthand and use prop() for disabled attr
Related to #1546.
Diffstat (limited to 'lib/scripts/script.js')
-rw-r--r--lib/scripts/script.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scripts/script.js b/lib/scripts/script.js
index 97edef0b7..0e03dcf37 100644
--- a/lib/scripts/script.js
+++ b/lib/scripts/script.js
@@ -26,5 +26,5 @@ function closePopups(){
}
jQuery(function () {
- jQuery(document).click(closePopups);
+ jQuery(document).on('click', closePopups);
});