Files
86box.github.io/assets/js/style-reduced.js
2021-12-03 18:57:44 -03:00

16 lines
266 B
JavaScript

var imgCache = {};
function getNaturalWidth(img) {
if (img.naturalWidth) {
return img.naturalWidth;
} else {
var img2 = imgCache[img.src];
if (!img2) {
img2 = new Image();
img2.src = img.src;
imgCache[img.src] = img2;
}
return img2.width;
}
}