web-manager 3.1.35 → 3.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +23 -23
- package/package.json +1 -1
package/index.js
CHANGED
@@ -490,20 +490,20 @@ function Manager() {
|
|
490
490
|
// saveToStorage: false
|
491
491
|
// },
|
492
492
|
pushNotifications: {
|
493
|
-
autoRequest: 60 // how long to wait before auto ask, 0 to disable
|
493
|
+
autoRequest: 60, // how long to wait before auto ask, 0 to disable
|
494
494
|
},
|
495
495
|
serviceWorker: {
|
496
|
-
path: ''
|
496
|
+
path: '',
|
497
497
|
},
|
498
498
|
initChecks: {
|
499
|
-
features: [] // an array of javascript and dom features to check for (NIY)
|
499
|
+
features: [], // an array of javascript and dom features to check for (NIY)
|
500
500
|
},
|
501
501
|
auth: {
|
502
502
|
state: 'default', // required, prohibited, default
|
503
503
|
sends: {
|
504
|
-
required:
|
505
|
-
prohibited:
|
506
|
-
}
|
504
|
+
required: tempUrl + '/signup/',
|
505
|
+
prohibited: tempUrl + '/',
|
506
|
+
},
|
507
507
|
},
|
508
508
|
popup: {
|
509
509
|
enabled: true,
|
@@ -512,9 +512,9 @@ function Manager() {
|
|
512
512
|
message: '',
|
513
513
|
btn_ok: {
|
514
514
|
text: '',
|
515
|
-
link: ''
|
516
|
-
}
|
517
|
-
}
|
515
|
+
link: '',
|
516
|
+
},
|
517
|
+
},
|
518
518
|
},
|
519
519
|
libraries: {
|
520
520
|
firebase_app: {
|
@@ -527,8 +527,8 @@ function Manager() {
|
|
527
527
|
projectId: '',
|
528
528
|
storageBucket: '',
|
529
529
|
messagingSenderId: '',
|
530
|
-
appId: ''
|
531
|
-
}
|
530
|
+
appId: '',
|
531
|
+
},
|
532
532
|
},
|
533
533
|
firebase_firestore: {
|
534
534
|
enabled: true,
|
@@ -543,14 +543,14 @@ function Manager() {
|
|
543
543
|
load: false,
|
544
544
|
},
|
545
545
|
lazysizes: {
|
546
|
-
enabled: true
|
546
|
+
enabled: true,
|
547
547
|
},
|
548
548
|
sentry: {
|
549
549
|
enabled: true,
|
550
550
|
config: {
|
551
551
|
dsn: '',
|
552
|
-
release: ''
|
553
|
-
}
|
552
|
+
release: '',
|
553
|
+
},
|
554
554
|
},
|
555
555
|
chatsy: {
|
556
556
|
enabled: true,
|
@@ -561,9 +561,9 @@ function Manager() {
|
|
561
561
|
openChatButton: {
|
562
562
|
background: '#237afc',
|
563
563
|
text: '#ffffff',
|
564
|
-
}
|
564
|
+
},
|
565
565
|
},
|
566
|
-
}
|
566
|
+
},
|
567
567
|
},
|
568
568
|
cookieconsent: {
|
569
569
|
enabled: true,
|
@@ -571,12 +571,12 @@ function Manager() {
|
|
571
571
|
palette: {
|
572
572
|
popup: {
|
573
573
|
background: '#237afc',
|
574
|
-
text: '#ffffff'
|
574
|
+
text: '#ffffff',
|
575
575
|
},
|
576
576
|
button: {
|
577
577
|
background: '#fff',
|
578
|
-
text: '#237afc'
|
579
|
-
}
|
578
|
+
text: '#237afc',
|
579
|
+
},
|
580
580
|
},
|
581
581
|
theme: 'classic',
|
582
582
|
position: 'bottom-left',
|
@@ -588,10 +588,10 @@ function Manager() {
|
|
588
588
|
// link: 'Learn more',
|
589
589
|
// href: '' || This.properties.global.urlRoot + '/cookies/',
|
590
590
|
// href: (tempUrl + '/cookies/')
|
591
|
-
}
|
592
|
-
}
|
593
|
-
}
|
594
|
-
}
|
591
|
+
},
|
592
|
+
},
|
593
|
+
},
|
594
|
+
},
|
595
595
|
};
|
596
596
|
|
597
597
|
var options_user = {};
|
package/package.json
CHANGED