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: af531f9f8304b359c3c795d1c0b2de8e2845f5f6 (plain)
1
2
3
export function isImageLoaded(element) {
  return element.complete && element.naturalHeight !== 0;
}