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

make each row of the buffer list clickable and jump to the selected buffer

This commit is contained in:
Doug Kearns
2007-10-16 12:05:57 +00:00
parent be22d59c63
commit 91452f438f
4 changed files with 20 additions and 7 deletions

View File

@@ -247,9 +247,9 @@ function Buffer() //{{{
url = vimperator.util.escapeHTML(url);
title = vimperator.util.escapeHTML(title);
list += "<tr><td align=\"right\"> " + number + "</td><td>" + indicator +
list += "<tr class=\"buffer-list\"><td align=\"right\"> " + number + "</td><td>" + indicator +
"</td><td style=\"width: 250px; max-width: 500px; overflow: hidden;\">" + title +
"</td><td><span style=\"color: green\">" + url + "</span></td></tr>";
"</td><td class=\"hl-URL\">" + url + "</td></tr>";
}
list += "</table>";