file uri instead of relative path for images

Windows conda build needs a file uri to the image. This fix needs also changes in StartPage.py
This commit is contained in:
rokuster
2019-02-05 17:59:03 +01:00
committed by Yorik van Havre
parent ddc27357f5
commit 59f39e2a33

View File

@@ -85,7 +85,7 @@ function printAddons(data) {
if (wblist.indexOf(data.data[i].name.toLowerCase()) == -1) {
html.push('<li><a href="', data.data[i].html_url, '">', data.data[i].name, '</a></li>');
} else {
html.push('<li>', data.data[i].name, '&nbsp;<img src="images/installed.png"></li>');
html.push('<li>', data.data[i].name, '&nbsp;<img src="IMAGE_SRC_INSTALLED"></li>');
}
}
}