fiks smol tekst

This commit is contained in:
lalka2016 2023-06-19 16:35:16 +03:00
parent 98403a8692
commit 64ca75e834

View file

@ -664,13 +664,13 @@ async function checkSearchTips()
for(const el of results["items"]) { for(const el of results["items"]) {
srchrr.insertAdjacentHTML("beforeend", ` srchrr.insertAdjacentHTML("beforeend", `
<tr class="restip" onmousedown="if (event.which === 2) { window.open('${el.url}', '_blank'); } else {location.href='${el.url}'}"> <tr class="restip" onmouseup="if (event.which === 2) { window.open('${el.url}', '_blank'); } else {location.href='${el.url}'}">
<td> <td>
<img src="${el.avatar}" width="30"> <img src="${el.avatar}" width="30">
</td> </td>
<td valign="top"> <td valign="top">
<p class="nameq" style="margin-top: -2px;">${el.name}</p> <p class="nameq" style="margin-top: -2px;text-transform:none;">${el.name}</p>
<p class="desq">${el.description}</p> <p class="desq" style="text-transform:none;">${el.description}</p>
</td> </td>
</tr> </tr>
`) `)