Преглед изворни кода

a couple of minor improvements regarding 'undefined' in libpannellum.js

pull/570/head
David von Oheimb пре 6 година
родитељ
комит
62db091e99
1 измењених фајлова са 3 додато и 3 уклоњено
  1. +3
    -3
      src/js/libpannellum.js

+ 3
- 3
src/js/libpannellum.js Прегледај датотеку

@@ -102,11 +102,11 @@ function Renderer(container) {

var s;
var faceMissing = false;
var cubeImgWidth = undefined;
var cubeImgWidth;
if (imageType == 'cubemap') {
for (s = 0; s < 6; s++) {
if (image[s].width > 0) {
if (cubeImgWidth == undefined)
if (cubeImgWidth === undefined)
cubeImgWidth = image[s].width;
if (cubeImgWidth != image[s].width)
console.log('Cube faces have inconsistent widths: ' + cubeImgWidth + ' vs. ' + image[s].width);
@@ -242,7 +242,7 @@ function Renderer(container) {
};
var incLoaded = function() {
if (this.width > 0) {
if (fallbackImgSize == undefined)
if (fallbackImgSize === undefined)
fallbackImgSize = this.width;
if (fallbackImgSize != this.width)
console.log('Fallback faces have inconsistent widths: ' + fallbackImgSize + ' vs. ' + this.width);


Loading…
Откажи
Сачувај