1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 10:24:12 +01:00

Death to E4X and stuff. Also fix some bugs.

This commit is contained in:
Kris Maglione
2012-11-30 19:12:51 -08:00
parent 0c4a25ca86
commit 81b41176b6
12 changed files with 45 additions and 30 deletions

View File

@@ -4,7 +4,7 @@
//
// This work is licensed for reuse under an MIT license. Details are
// given in the LICENSE.txt file included with this file.
/* use strict */
"use strict";
/** @scope modules */
@@ -757,8 +757,10 @@ var Mappings = Module("mappings", {
yield {
name: name,
columns: [
i === 0 ? "" : <span highlight="Object" style="padding-right: 1em;">{mode.name}</span>,
hive == mappings.builtin ? "" : <span highlight="Object" style="padding-right: 1em;">{hive.name}</span>
i === 0 ? "" : ["span", { highlight: "Object", style: "padding-right: 1em;" },
mode.name],
hive == mappings.builtin ? "" : ["span", { highlight: "Object", style: "padding-right: 1em;" },
hive.name]
],
__proto__: map
};