mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update admin.js
This commit is contained in:
parent
8ddd5883fe
commit
7c505b3ec0
@ -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';
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user