1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-31 11:02:37 +01:00

Fix a silly error in modes.set.

This commit is contained in:
Kris Maglione
2011-02-23 16:41:26 -05:00
parent 2c109025bf
commit 80ca9194ec
4 changed files with 25 additions and 13 deletions

View File

@@ -227,10 +227,16 @@ var Buffer = Module("buffer", {
},
set lastInputField(value) { this.localStore.lastInputField = value && Cu.getWeakReference(value); },
/**
* @property {nsIURI} The current top-level document.
*/
get doc() window.content.document,
/**
* @property {nsIURI} The current top-level document's URI.
*/
get uri() util.newURI(content.location.href),
/**
* @property {nsIURI} The current top-level document's URI, sans any
* fragment identifier.