1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-16 09:15:45 +01:00

Fix help on FF3, overly long URL chains in context filenames, etc.

This commit is contained in:
Kris Maglione
2011-01-13 18:26:27 -05:00
parent 3e85415890
commit f0dbc8f2f0
8 changed files with 23 additions and 30 deletions

View File

@@ -88,7 +88,7 @@ var Overlay = Module("Overlay", {
const create = window.Object.create || (function () {
window.__dactyl_eval_string = "(function (proto) ({ __proto__: proto }))";
services.subscriptLoader.loadSubScript(BASE + "eval.js", window);
JSMLoader.loadSubScript(BASE + "eval.js", window);
let res = window.__dactyl_eval_result;
delete window.__dactyl_eval_string;
@@ -110,7 +110,7 @@ var Overlay = Module("Overlay", {
load: function load(script) {
for (let [i, base] in Iterator(prefix)) {
try {
services.subscriptLoader.loadSubScript(base + script + ".js", modules, "UTF-8");
JSMLoader.loadSubScript(base + script + ".js", modules, "UTF-8");
return;
}
catch (e) {