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

Remove trailing commas from object initializers.

This commit is contained in:
Doug Kearns
2008-12-23 01:32:24 +11:00
parent 68a28b7e14
commit 253346dbc3
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ function Hints() //{{{
T: Mode("Open new tab based on hint", function (elem, loc) commandline.open(":", "tabopen " + loc, modes.EX)), T: Mode("Open new tab based on hint", function (elem, loc) commandline.open(":", "tabopen " + loc, modes.EX)),
W: Mode("Open new window based on hint", function (elem, loc) commandline.open(":", "winopen " + loc, modes.EX)), W: Mode("Open new window based on hint", function (elem, loc) commandline.open(":", "winopen " + loc, modes.EX)),
y: Mode("Yank hint location", function (elem, loc) util.copyToClipboard(loc, true)), y: Mode("Yank hint location", function (elem, loc) util.copyToClipboard(loc, true)),
Y: Mode("Yank hint description", function (elem) util.copyToClipboard(elem.textContent || "", true), extended), Y: Mode("Yank hint description", function (elem) util.copyToClipboard(elem.textContent || "", true), extended)
}; };
// reset all important variables // reset all important variables

View File

@@ -1029,7 +1029,7 @@ function Options() //{{{
{ {
this.popContext(); this.popContext();
} }
}, }
}; };
//}}} //}}}
}; //}}} }; //}}}