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

Fix typos in hints.js and protocols.js. Closes issue #144.

This commit is contained in:
Kris Maglione
2009-11-09 06:31:54 -05:00
parent 092fb1ea15
commit 884411c39c
2 changed files with 6 additions and 6 deletions

View File

@@ -42,7 +42,7 @@ function makeChannel(url, orig) {
function fakeChannel(orig) makeChannel("chrome://liberator/content/does/not/exist", orig);
function redirect(to, orig) {
let html = <html><head><meta http-equiv="Refresh" content={"0;" + to}/></head></html>.toXMLString();
return makeChannel(dataURL('text/html', html), ioServices.newURI(to, null, null));
return makeChannel(dataURL('text/html', html), ioService.newURI(to, null, null));
}
function ChromeData() {}