diff options
author | Moonchild <moonchild@palemoon.org> | 2022-02-12 17:47:03 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-02-12 17:47:03 +0000 |
commit | 300925d6319e908f792d84bbe3ff48b544b55fd0 (patch) | |
tree | e3842e2a6bf19090185f9c475b3846e1bb79ac97 /modules/AppConstants.jsm | |
parent | d45e6e7c74cc5184cd6535cd4f8302a331d90a53 (diff) | |
download | aura-central-300925d6319e908f792d84bbe3ff48b544b55fd0.tar.gz |
No issue - Add missing commas in AppConstants.jsm
Diffstat (limited to 'modules/AppConstants.jsm')
-rw-r--r-- | modules/AppConstants.jsm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/AppConstants.jsm b/modules/AppConstants.jsm index 5a340e355..f17e37b93 100644 --- a/modules/AppConstants.jsm +++ b/modules/AppConstants.jsm @@ -19,8 +19,8 @@ this.EXPORTED_SYMBOLS = ["AppConstants"]; this.AppConstants = Object.freeze({ // We don't use nightly or alpha channels here. Flag all as release. - NIGHTLY_BUILD: false - RELEASE_OR_BETA: true + NIGHTLY_BUILD: false, + RELEASE_OR_BETA: true, ACCESSIBILITY: #ifdef ACCESSIBILITY |