mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 22:42:26 +01:00
quick fix for broken :pageinfo
This commit is contained in:
@@ -1846,6 +1846,8 @@ liberator.template = {
|
|||||||
|
|
||||||
table: function (title, data)
|
table: function (title, data)
|
||||||
{
|
{
|
||||||
|
let self = this;
|
||||||
|
|
||||||
return this.generic(
|
return this.generic(
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -1855,7 +1857,7 @@ liberator.template = {
|
|||||||
this.map(data, function (datum)
|
this.map(data, function (datum)
|
||||||
<tr>
|
<tr>
|
||||||
<td style="font-weight: bold; min-width: 150px">{datum[0]}</td>
|
<td style="font-weight: bold; min-width: 150px">{datum[0]}</td>
|
||||||
<td>{this.maybeXML(datum[1])}</td>
|
<td>{self.maybeXML(datum[1])}</td>
|
||||||
</tr>)
|
</tr>)
|
||||||
}
|
}
|
||||||
</table>);
|
</table>);
|
||||||
|
|||||||
Reference in New Issue
Block a user