fixed title escaping
This commit is contained in:
parent
a68cb9e832
commit
634c375145
4
main.js
4
main.js
|
@ -817,7 +817,7 @@ function showlinkdialog(link)
|
||||||
{
|
{
|
||||||
if (titlemap[link])
|
if (titlemap[link])
|
||||||
{
|
{
|
||||||
a.innerText = titlemap[link];
|
a.innerHTML = titlemap[link];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -827,7 +827,7 @@ function showlinkdialog(link)
|
||||||
{
|
{
|
||||||
if (res.title)
|
if (res.title)
|
||||||
{
|
{
|
||||||
a.innerText = res.title;
|
a.innerHTML = res.title;
|
||||||
titlemap[link] = res.title;
|
titlemap[link] = res.title;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue