Escape ' character in HTML attribute titleid of every title listed

Fixes #93 (articles with this character in their name could not de displayed)
This commit is contained in:
mossroy 2014-07-23 17:40:40 +02:00
parent ea4d62c7de
commit 2bea2ca188

View File

@ -477,7 +477,7 @@ define(['jquery', 'title', 'archive', 'util', 'cookies','geometry','osabstractio
distanceFromHereHtml = " (" + distanceKm + " km " + cardinalDirection + ")";
}
titleListDivHtml += "<a href='#' titleid='" + title.toStringId()
titleListDivHtml += "<a href='#' titleid='" + title.toStringId().replace(/'/g,"&apos;")
+ "' class='list-group-item'>" + title.getReadableName()
+ distanceFromHereHtml
+ "</a>";