1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 16:42:26 +01:00

quick fix for broken :pageinfo

This commit is contained in:
Doug Kearns
2008-10-02 14:46:51 +00:00
parent a5e9afe3da
commit a6a77af604

View File

@@ -1846,6 +1846,8 @@ liberator.template = {
table: function (title, data)
{
let self = this;
return this.generic(
<table>
<tr>
@@ -1855,7 +1857,7 @@ liberator.template = {
this.map(data, function (datum)
<tr>
<td style="font-weight: bold; min-width: 150px">{datum[0]}</td>
<td>{this.maybeXML(datum[1])}</td>
<td>{self.maybeXML(datum[1])}</td>
</tr>)
}
</table>);