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

More completion stuff.

This commit is contained in:
Kris Maglione
2008-11-22 06:53:44 +00:00
parent 4f1c195aa4
commit fcc799aa6a
12 changed files with 292 additions and 266 deletions

View File

@@ -218,13 +218,13 @@ function AutoCommands() //{{{
var list = template.generic(
<table>
<tr>
<td class="hl-Title" colspan="2">----- Auto Commands -----</td>
<tr class="hl-Title">
<td colspan="2">----- Auto Commands -----</td>
</tr>
{
template.map(cmds, function ([event, items])
<tr>
<td class="hl-Title" colspan="2">{event}</td>
<tr class="hl-Title">
<td colspan="2">{event}</td>
</tr>
+
template.map(items, function (item)
@@ -562,9 +562,7 @@ function Events() //{{{
liberator.echoerr("Interrupted");
else
liberator.echoerr("Processing " + event.type + " event: " + (e.echoerr || e));
liberator.dump(e);
if (Components.utils.reportError)
Components.utils.reportError(e);
liberator.reportError(e);
}
};
}
@@ -1128,7 +1126,7 @@ function Events() //{{{
// if (events.wantsModeReset)
// {
// events.wantsModeReset = false;
modes.reset();
modes.reset();
// }
// }, 0);
}