diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-06-28 15:01:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-28 15:01:10 +0200 |
commit | c49f527e9d759505e52744c1ae7c1ddfe19fdf74 (patch) | |
tree | 2ecb9d0fba5d6c27b50087e5e36644ae466672ab /application/palemoon/base | |
parent | da4fa3b52fea6258f56ed73d9132fcf04ce81fba (diff) | |
parent | f4205ffd8dd2ce754075d56e32c9ed5e28364ab2 (diff) | |
download | uxp-c49f527e9d759505e52744c1ae7c1ddfe19fdf74.tar.gz |
Merge pull request #556 from JustOff/PR_sanitize_promises
[PALEMOON] Use Promises.jsm instead of promise.js from jetpack in sanitize.js
Diffstat (limited to 'application/palemoon/base')
-rw-r--r-- | application/palemoon/base/content/sanitize.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/palemoon/base/content/sanitize.js b/application/palemoon/base/content/sanitize.js index 74372a4afb..0c85fa215c 100644 --- a/application/palemoon/base/content/sanitize.js +++ b/application/palemoon/base/content/sanitize.js @@ -11,7 +11,7 @@ XPCOMUtils.defineLazyModuleGetter(this, "FormHistory", XPCOMUtils.defineLazyModuleGetter(this, "Downloads", "resource://gre/modules/Downloads.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "Promise", - "resource:///modules/promise.js"); + "resource://gre/modules/Promise.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "Task", "resource://gre/modules/Task.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "console", |