mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-02 22:24:12 +01:00
use let when declaring loop variables
This commit is contained in:
@@ -204,7 +204,7 @@ liberator.Addressbook = function () //{{{
|
||||
{
|
||||
var list = ":" + liberator.util.escapeHTML(liberator.commandline.getCommand()) + "<br/>" +
|
||||
"<table><tr class=\"hl-Title\" align=\"left\"><th>Name</th><th>Address</th></tr>";
|
||||
for (var i = 0; i < addresses.length; i++)
|
||||
for (let i = 0; i < addresses.length; i++)
|
||||
{
|
||||
var displayName = liberator.util.escapeHTML(liberator.util.clip(addresses[i][0], 50));
|
||||
var mailAddr = liberator.util.escapeHTML(addresses[i][1]);
|
||||
|
||||
Reference in New Issue
Block a user