update to show the default icon

preferencesAboutTextFull
Claudio Valerio 12 years ago
parent a788638a0e
commit b9c7497636
  1. 14
      resources/library/search/PlaneteAudioSearch.wgs/index.html
  2. 14
      resources/library/search/PlaneteFlashSearch.wgs/index.html
  3. 14
      resources/library/search/PlaneteImgSearch.wgs/index.html

@ -71,21 +71,19 @@
// We use titleNoFormatting so that no HTML tags are left in the
// title
title.innerHTML = result.title;
if (thumbnails) {
var newImg = document.createElement('img');
// There is also a result.file property which has the escaped version
newImg.src = result.file;
if (thumbnails) {
newImg.src = result.file;
} else {
newImg.src = "./images/thumbnail_icon.png";
}
var imgWidth = (result.tbWidth > minWidth)?result.tbWidth:minWidth;
var imgHeight = (result.tbHeight > minHeight)?result.tbHeight:minHeight;
imgContainer.width(imgWidth).height(imgHeight);
imgContainer.append($(newImg));
} else {
var imgWidth = (result.tbWidth > minWidth)?result.tbWidth:minWidth;
var imgHeight = (result.tbHeight > minHeight)?result.tbHeight:minHeight;
imgContainer.width(imgWidth).height(imgHeight);
}
iUrl.attr("value", result.file);
iUrl.attr("value", result.file);
iContent.attr("value", result.title);
iHeight.attr("value", result.height);
iWidth.attr("value", result.width);

@ -71,21 +71,19 @@
// We use titleNoFormatting so that no HTML tags are left in the
// title
title.innerHTML = result.title;
if (thumbnails) {
var newImg = document.createElement('img');
// There is also a result.file property which has the escaped version
newImg.src = result.file;
if (thumbnails) {
newImg.src = result.file;
} else {
newImg.src = "./images/thumbnail_icon.png";
}
var imgWidth = (result.tbWidth > minWidth)?result.tbWidth:minWidth;
var imgHeight = (result.tbHeight > minHeight)?result.tbHeight:minHeight;
imgContainer.width(imgWidth).height(imgHeight);
imgContainer.append($(newImg));
} else {
var imgWidth = (result.tbWidth > minWidth)?result.tbWidth:minWidth;
var imgHeight = (result.tbHeight > minHeight)?result.tbHeight:minHeight;
imgContainer.width(imgWidth).height(imgHeight);
}
iUrl.attr("value", result.file);
iUrl.attr("value", result.file);
iContent.attr("value", result.title);
iHeight.attr("value", result.height);
iWidth.attr("value", result.width);

@ -71,21 +71,19 @@
// We use titleNoFormatting so that no HTML tags are left in the
// title
title.innerHTML = result.title;
if (thumbnails) {
var newImg = document.createElement('img');
// There is also a result.file property which has the escaped version
newImg.src = result.file;
if (thumbnails) {
newImg.src = result.file;
} else {
newImg.src = "./images/thumbnail_icon.png";
}
var imgWidth = (result.tbWidth > minWidth)?result.tbWidth:minWidth;
var imgHeight = (result.tbHeight > minHeight)?result.tbHeight:minHeight;
imgContainer.width(imgWidth).height(imgHeight);
imgContainer.append($(newImg));
} else {
var imgWidth = (result.tbWidth > minWidth)?result.tbWidth:minWidth;
var imgHeight = (result.tbHeight > minHeight)?result.tbHeight:minHeight;
imgContainer.width(imgWidth).height(imgHeight);
}
iUrl.attr("value", result.file);
iUrl.attr("value", result.file);
iContent.attr("value", result.title);
iHeight.attr("value", result.height);
iWidth.attr("value", result.width);

Loading…
Cancel
Save