diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-17 08:19:14 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-17 08:19:14 +0200 |
commit | e3dda3ebd5658bcea920be3becc89a84194930f6 (patch) | |
tree | d9b02e443b6061b99a305cc5702387878ae473c5 /application/palemoon/base/content | |
parent | 1b4963fd734bbfb857593afaa103879d6c0e55eb (diff) | |
download | UXP-e3dda3ebd5658bcea920be3becc89a84194930f6.tar UXP-e3dda3ebd5658bcea920be3becc89a84194930f6.tar.gz UXP-e3dda3ebd5658bcea920be3becc89a84194930f6.tar.lz UXP-e3dda3ebd5658bcea920be3becc89a84194930f6.tar.xz UXP-e3dda3ebd5658bcea920be3becc89a84194930f6.zip |
[PALEMOON] Fix conflict in openLocation.js
https://github.com/MoonchildProductions/UXP/commit/931950a880b3550490422b1855c509be10586858#diff-2f4cb31954d5857012f1452698b9bfce
Diffstat (limited to 'application/palemoon/base/content')
-rw-r--r-- | application/palemoon/base/content/openLocation.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/palemoon/base/content/openLocation.js b/application/palemoon/base/content/openLocation.js index 6987abdf8..f6e6a2434 100644 --- a/application/palemoon/base/content/openLocation.js +++ b/application/palemoon/base/content/openLocation.js @@ -7,7 +7,7 @@ var browser; var dialog = {}; var pref = null; -let openLocationModule = {}; +var openLocationModule = {}; try { pref = Components.classes["@mozilla.org/preferences-service;1"] .getService(Components.interfaces.nsIPrefBranch); @@ -17,7 +17,7 @@ try { Components.utils.import("resource:///modules/openLocationLastURL.jsm", openLocationModule); Components.utils.import("resource://gre/modules/Task.jsm"); -let gOpenLocationLastURL = new openLocationModule.OpenLocationLastURL(window.opener); +var gOpenLocationLastURL = new openLocationModule.OpenLocationLastURL(window.opener); function onLoad() { |