Welcome to mirror list, hosted at ThFree Co, Russian Federation.

image_utility.js « utils « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2977ec821cbb6832dd711d201ba7d231a61c0933 (plain)
1
2
3
4
5
/* eslint-disable import/prefer-default-export */

export function isImageLoaded(element) {
  return element.complete && element.naturalHeight !== 0;
}