Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/622b4d9593fc5d11a8f3f9a114025e23832f0c8b?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

some fixes in image planete

preferencesAboutTextFull
unknown 13 years ago
parent ed81281946
commit 622b4d9593
  1. 6
      resources/library/search/Image Planete.wgs/index.html

@ -78,6 +78,12 @@
// There is also a result.file property which has the escaped version
if (thumbnails) {
newImg.src = result.file;
if(result.height >= result.width)
newImg.height = minHeight;
else{
newImg.width = minWidth;
//newImg.style.margin = (120 - result.height)/2 + "px 0";
}
} else {
newImg.src = "./images/thumbnail_icon.png";
}

Loading…
Cancel
Save