[ticket/15668] Replace .load() with .on('load')

PHPBB3-15668
This commit is contained in:
Jakub Senko 2018-06-18 11:58:20 +02:00
parent 02cbb864a5
commit 5e70c9b831
No known key found for this signature in database
GPG key ID: 6A7C328CD66EC21E
2 changed files with 2 additions and 2 deletions

View file

@ -1644,7 +1644,7 @@ phpbb.lazyLoadAvatars = function loadAvatars() {
});
};
$(window).load(phpbb.lazyLoadAvatars);
$(window).on('load', phpbb.lazyLoadAvatars);
/**
* Apply code editor to all textarea elements with data-bbcode attribute

View file

@ -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();
});
});