aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles
diff options
context:
space:
mode:
authorJakub Senko <jakubsenko@gmail.com>2018-06-18 11:58:20 +0200
committerJakub Senko <jakubsenko@gmail.com>2018-06-18 11:58:20 +0200
commit5e70c9b831d7f316132b98ee90b301a8b358b32e (patch)
tree19c462b4d0f21e26deaf604d5359e3059a0ddbfc /phpBB/styles
parent02cbb864a5b6df62e978a69c368c8ec5ca35d8a3 (diff)
downloadforums-5e70c9b831d7f316132b98ee90b301a8b358b32e.tar
forums-5e70c9b831d7f316132b98ee90b301a8b358b32e.tar.gz
forums-5e70c9b831d7f316132b98ee90b301a8b358b32e.tar.bz2
forums-5e70c9b831d7f316132b98ee90b301a8b358b32e.tar.xz
forums-5e70c9b831d7f316132b98ee90b301a8b358b32e.zip
[ticket/15668] Replace .load() with .on('load')
PHPBB3-15668
Diffstat (limited to 'phpBB/styles')
-rw-r--r--phpBB/styles/prosilver/template/forum_fn.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js
index 3f59709ac6..474570e84e 100644
--- a/phpBB/styles/prosilver/template/forum_fn.js
+++ b/phpBB/styles/prosilver/template/forum_fn.js
@@ -612,7 +612,7 @@ function parseDocument($container) {
// If there are any images in the links list, run the check again after they have loaded
$linksAll.find('img').each(function() {
- $(this).load(function() {
+ $(this).on('load', function() {
check();
});
});