1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 17:57:58 +01:00

Fix quoting issues in :au.

This commit is contained in:
Kris Maglione
2011-01-18 21:32:30 -05:00
parent 35f7fb4aa0
commit 47f98a3a6a
2 changed files with 3 additions and 2 deletions

View File

@@ -221,7 +221,7 @@ var Buffer = Module("buffer", {
onDOMContentLoaded: function onDOMContentLoaded(event) {
let doc = event.originalTarget;
if (doc instanceof HTMLDocument && !doc.defaultView.frameElement)
if (doc instanceof HTMLDocument)
this._triggerLoadAutocmd("DOMLoad", doc);
},