web-manager 3.1.18 → 3.1.19
Sign up to get free protection for your applications and to get access to all the features.
- 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