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

fix :marks position columns output

This commit is contained in:
Doug Kearns
2008-10-01 07:17:46 +00:00
parent cc27911a60
commit 5b17f32ac5
2 changed files with 9 additions and 3 deletions

View File

@@ -1379,8 +1379,8 @@ liberator.Buffer = function () //{{{
{[
<tr>
<td>{mark[0]}</td>
<td align="right">{Math.round(mark[1].position.y & 100)}%</td>
<td align="right">{Math.round(mark[1].position.x & 100)}%</td>
<td align="right">{Math.round(mark[1].position.y * 100)}%</td>
<td align="right">{Math.round(mark[1].position.x * 100)}%</td>
<td style="color: green;">{mark[1].location}</td>
</tr>
for each (mark in marks)].reduce(this.add, <></>)