diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2018-06-18 11:58:20 +0200 |
---|---|---|
committer | Jakub Senko <jakubsenko@gmail.com> | 2018-06-18 11:58:20 +0200 |
commit | 5e70c9b831d7f316132b98ee90b301a8b358b32e (patch) | |
tree | 19c462b4d0f21e26deaf604d5359e3059a0ddbfc /phpBB/styles/prosilver | |
parent | 02cbb864a5b6df62e978a69c368c8ec5ca35d8a3 (diff) | |
download | forums-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/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/template/forum_fn.js | 2 |
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(); }); }); |