Update admin.js

This commit is contained in:
Anyon 2020-09-22 14:45:57 +08:00
parent 8ddd5883fe
commit 7c505b3ec0

View File

@ -808,7 +808,7 @@ $(function () {
})(code) })(code)
}; };
/*! 图片懒加载转换处理 */ /*! 图片懒加载处理 */
$(window).on('scroll resize load', function () { $(window).on('scroll resize load', function () {
var notFoundCount = 0, maxNotFound = 2, screenHeight = $(window).height(); var notFoundCount = 0, maxNotFound = 2, screenHeight = $(window).height();
$('[data-lazy-src]:not([data-lazy-loaded])').each(function (src, pos) { $('[data-lazy-src]:not([data-lazy-loaded])').each(function (src, pos) {
@ -822,8 +822,8 @@ $(function () {
}); });
/*! 图片加载异常处理 */ /*! 图片加载异常处理 */
document.addEventListener('error', function (e, elem) { document.addEventListener('error', function (event, elem) {
elem = e.target; elem = event.target;
if (elem.tagName.toLowerCase() === 'img') { if (elem.tagName.toLowerCase() === 'img') {
elem.src = baseRoot + 'theme/img/404_icon.png'; elem.src = baseRoot + 'theme/img/404_icon.png';
} }