diff options
author | New Tobin Paradigm <email@mattatobin.com> | 2018-04-14 03:11:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-14 03:11:32 -0400 |
commit | 63d482639cef4e5df364d707a21660c36b576f7b (patch) | |
tree | f5d6bbf06934c49c43553548f18017d20d77eb8e /application/palemoon/components/downloads/content/indicator.js | |
parent | 99ba894a9a5f6204dec20f17d5c7fe5d3a869b95 (diff) | |
parent | 72ad33f3fdd110f1a1c7d1a40426c2f516ea3e36 (diff) | |
download | UXP-63d482639cef4e5df364d707a21660c36b576f7b.tar UXP-63d482639cef4e5df364d707a21660c36b576f7b.tar.gz UXP-63d482639cef4e5df364d707a21660c36b576f7b.tar.lz UXP-63d482639cef4e5df364d707a21660c36b576f7b.tar.xz UXP-63d482639cef4e5df364d707a21660c36b576f7b.zip |
Merge pull request #156 from janekptacijarabaci/pm_places_downloads_1
[PALEMOON] Downloads - throws an error
Diffstat (limited to 'application/palemoon/components/downloads/content/indicator.js')
-rw-r--r-- | application/palemoon/components/downloads/content/indicator.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/application/palemoon/components/downloads/content/indicator.js b/application/palemoon/components/downloads/content/indicator.js index b0e3217e5..e6a5bd012 100644 --- a/application/palemoon/components/downloads/content/indicator.js +++ b/application/palemoon/components/downloads/content/indicator.js @@ -254,6 +254,12 @@ const DownloadsButton = { } }; +Object.defineProperty(this, "DownloadsButton", { + value: DownloadsButton, + enumerable: true, + writable: false +}); + //////////////////////////////////////////////////////////////////////////////// //// DownloadsIndicatorView @@ -592,3 +598,9 @@ const DownloadsIndicatorView = { document.getElementById("downloads-indicator-progress"); } }; + +Object.defineProperty(this, "DownloadsIndicatorView", { + value: DownloadsIndicatorView, + enumerable: true, + writable: false +}); |