mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-28 06:35:47 +01:00
Typos and whitespace fixes.
This commit is contained in:
@@ -80,15 +80,15 @@ const AutoCommands = Module("autocommands", {
|
|||||||
</tr>
|
</tr>
|
||||||
{
|
{
|
||||||
template.map(cmds, function ([event, items])
|
template.map(cmds, function ([event, items])
|
||||||
<tr highlight="Title">
|
<tr highlight="Title">
|
||||||
<td colspan="2">{event}</td>
|
<td colspan="2">{event}</td>
|
||||||
</tr>
|
</tr>
|
||||||
+
|
+
|
||||||
template.map(items, function (item)
|
template.map(items, function (item)
|
||||||
<tr>
|
<tr>
|
||||||
<td> {item.pattern.source}</td>
|
<td> {item.pattern.source}</td>
|
||||||
<td>{item.command}</td>
|
<td>{item.command}</td>
|
||||||
</tr>))
|
</tr>))
|
||||||
}
|
}
|
||||||
</table>);
|
</table>);
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -701,7 +701,7 @@ const Events = Module("events", {
|
|||||||
// access to the real focus target
|
// access to the real focus target
|
||||||
// Huh? --djk
|
// Huh? --djk
|
||||||
onFocusChange: function onFocusChange(event) {
|
onFocusChange: function onFocusChange(event) {
|
||||||
// command line has it's own focus change handler
|
// command line has its own focus change handler
|
||||||
if (dactyl.mode == modes.COMMAND_LINE)
|
if (dactyl.mode == modes.COMMAND_LINE)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
@@ -833,7 +833,7 @@ function XPCOM(interfaces, superClass) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a mew Module class and instantiates an instance into the current
|
* Constructs a new Module class and instantiates an instance into the current
|
||||||
* module global object.
|
* module global object.
|
||||||
*
|
*
|
||||||
* @param {string} name The name of the instance.
|
* @param {string} name The name of the instance.
|
||||||
|
|||||||
Reference in New Issue
Block a user