coverpage: Remove used function.

This commit is contained in:
Chris Johns 2017-01-12 13:20:48 +11:00
parent 321d20a02d
commit 7956bbffef

View File

@ -4,21 +4,6 @@
* Licensed under the MIT license
*/
function parseCatalogue(xml) {
if (window.DOMParser)
{
parser = new DOMParser();
xmlDoc = parser.parseFromString(xml, "text/xml");
}
else // Internet Explorer
{
xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async = false;
xmlDoc.loadXML(xml);
}
return xmlDoc;
}
function catalogueHeader(id, title, date) {
return '' +
' <div class="table-responsive">' +