mirror of
https://github.com/simon987/Simple-Incremental-Search-Tool.git
synced 2025-12-13 23:29:04 +00:00
Fix hover title
This commit is contained in:
@@ -212,7 +212,7 @@ function createDocCard(hit) {
|
|||||||
title.appendChild(document.createTextNode(hit["_source"]["name"] + extension));
|
title.appendChild(document.createTextNode(hit["_source"]["name"] + extension));
|
||||||
}
|
}
|
||||||
|
|
||||||
title.setAttribute("title", hit["_source"]["path"] + hit["_source"]["name"] + extension);
|
title.setAttribute("title", hit["_source"]["path"] + "/" + hit["_source"]["name"] + extension);
|
||||||
docCard.appendChild(title);
|
docCard.appendChild(title);
|
||||||
|
|
||||||
let tagContainer = document.createElement("div");
|
let tagContainer = document.createElement("div");
|
||||||
|
|||||||
Reference in New Issue
Block a user