web-manager 3.1.18 → 3.1.19
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 +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
@@ -554,8 +554,8 @@ function Manager() {
|
|
554
554
|
config: {
|
555
555
|
accountId: '',
|
556
556
|
chatId: '',
|
557
|
-
|
558
|
-
|
557
|
+
settings: {
|
558
|
+
openChatButton: {
|
559
559
|
background: '#237afc',
|
560
560
|
text: '#ffffff',
|
561
561
|
}
|
@@ -687,7 +687,7 @@ function Manager() {
|
|
687
687
|
var chatsyOps = options_user.libraries.chatsy;
|
688
688
|
if (chatsyOps.enabled) {
|
689
689
|
This.dom().select('#prechat-btn').css({
|
690
|
-
background: chatsyOps.config.
|
690
|
+
background: chatsyOps.config.settings.openChatButton.background,
|
691
691
|
})
|
692
692
|
.show();
|
693
693
|
}
|
package/package.json
CHANGED