web-manager 3.1.37 → 3.1.38
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +20 -4
- package/package.json +1 -1
package/index.js
CHANGED
@@ -96,7 +96,20 @@ function Manager() {
|
|
96
96
|
contact: {
|
97
97
|
emailSupport: '',
|
98
98
|
emailBusiness: '',
|
99
|
-
},
|
99
|
+
},
|
100
|
+
download: {
|
101
|
+
windows: '',
|
102
|
+
mac: '',
|
103
|
+
linuxDebian: '',
|
104
|
+
linuxSnap: '',
|
105
|
+
},
|
106
|
+
extension: {
|
107
|
+
chrome: '',
|
108
|
+
firefox: '',
|
109
|
+
edge: '',
|
110
|
+
opera: '',
|
111
|
+
safari: '',
|
112
|
+
},
|
100
113
|
validRedirectHosts: [],
|
101
114
|
// preferences: {
|
102
115
|
// // firebase: {
|
@@ -628,9 +641,12 @@ function Manager() {
|
|
628
641
|
This.properties.global.version = configuration.global.version;
|
629
642
|
This.properties.global.url = configuration.global.url;
|
630
643
|
This.properties.global.cacheBreaker = configuration.global.cacheBreaker;
|
631
|
-
|
632
|
-
This.properties.global.
|
633
|
-
This.properties.global.contact
|
644
|
+
|
645
|
+
This.properties.global.brand = configuration.global.brand;
|
646
|
+
This.properties.global.contact = configuration.global.contact;
|
647
|
+
This.properties.global.download = configuration.global.download;
|
648
|
+
This.properties.global.extension = configuration.global.extension;
|
649
|
+
|
634
650
|
This.properties.global.validRedirectHosts = configuration.global.validRedirectHosts;
|
635
651
|
This.properties.meta.environment = utilities.get(configuration, 'global.settings.debug.environment', This.properties.meta.environment);
|
636
652
|
This.properties.page.queryString = new URLSearchParams(window.location.search);
|
package/package.json
CHANGED