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

Poke 'ln' default.

This commit is contained in:
Kris Maglione
2012-05-26 11:48:39 -04:00
parent 21adc88f11
commit fae8cf3577
2 changed files with 2 additions and 2 deletions

View File

@@ -2236,7 +2236,7 @@ var Buffer = Module("Buffer", {
"Patterns used to determine line numbers used by G", "Patterns used to determine line numbers used by G",
"sitemap", { "sitemap", {
// Make sure to update the docs when you change this. // Make sure to update the docs when you change this.
"view-source:*": '[id^=line]', "view-source:*": 'body,[id^=line]',
"code.google.com": '#nums [id^="nums_table"] a[href^="#"]', "code.google.com": '#nums [id^="nums_table"] a[href^="#"]',
"github.com": '.line_numbers>*', "github.com": '.line_numbers>*',
"mxr.mozilla.org": 'a.l', "mxr.mozilla.org": 'a.l',

View File

@@ -22,7 +22,7 @@ lazyRequire("overlay", ["overlay"]);
lazyRequire("storage", ["storage"]); lazyRequire("storage", ["storage"]);
lazyRequire("template", ["template"]); lazyRequire("template", ["template"]);
let tmp = {}; let tmp = Object.create(this);
JSMLoader.loadSubScript("chrome://browser/content/sanitize.js", tmp); JSMLoader.loadSubScript("chrome://browser/content/sanitize.js", tmp);
tmp.Sanitizer.prototype.__proto__ = Class.prototype; tmp.Sanitizer.prototype.__proto__ = Class.prototype;