1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-30 17:52:26 +01:00

Fix noise.

--HG--
extra : transplant_source : f%F4%5E%E8%C3%B8%E2%DB%B2jX%B5D%02%EA%BE%0D%1A%E2.
This commit is contained in:
Kris Maglione
2012-07-21 19:30:51 -04:00
parent 1ea6bd8911
commit 7838c932f5
2 changed files with 2 additions and 2 deletions

View File

@@ -374,7 +374,7 @@
</item>
<item>
<tags><![CDATA[<Leader>]]></tags>
<tags><![CDATA['mapleader' <Leader>]]></tags>
<strut/>
<spec><![CDATA[<Leader>]]></spec>
<description>

View File

@@ -415,7 +415,7 @@ var DOM = Class("DOM", {
return editor;
},
get isEditable() !!this.editor || this.style.MozUserModify == "read-write",
get isEditable() !!this.editor || this[0] instanceof Ci.nsIDOMElement && this.style.MozUserModify == "read-write",
get isInput() isinstance(this[0], [Ci.nsIDOMHTMLInputElement,
Ci.nsIDOMHTMLTextAreaElement,