1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 00:15:46 +01:00

Fix key feeding issues with some sites. Fix bug in dactyl.generateHelp.

This commit is contained in:
Kris Maglione
2011-03-11 06:48:42 -05:00
parent ed00ac2584
commit 5e6b47009c
2 changed files with 13 additions and 5 deletions

View File

@@ -886,7 +886,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
data.push(" ");
data.push(name);
data.push('="');
data.push(<>{value}</>.toXMLString());
data.push(<>{value}</>.toXMLString().replace(/"/g, "&quot;"));
data.push('"');
}
if (node.localName in empty)