@chat21/chat21-web-widget 5.0.71-rc.8 → 5.0.71
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/CHANGELOG.md +21 -2
- package/package.json +1 -1
- package/src/app/app.component.ts +37 -36
- package/src/app/component/conversation-detail/conversation/conversation.component.ts +3 -4
- package/src/app/component/message/carousel/carousel.component.ts +1 -1
- package/src/app/providers/translator.service.ts +6 -8
- package/src/app/utils/constants.ts +0 -1
- package/src/app/utils/globals.ts +0 -2
- package/src/assets/i18n/en.json +5 -6
- package/src/assets/i18n/es.json +13 -10
- package/src/assets/i18n/fr.json +13 -10
- package/src/assets/i18n/it.json +13 -10
- package/src/assets/js/chat21client.js +0 -1
- package/src/assets/twp/chatbot-panel.html +93 -11
- package/src/assets/twp/index-dev.html +139 -32
- package/src/assets/twp/index.html +125 -39
- package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +11 -20
- package/src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts +11 -21
- package/src/chat21-core/providers/tiledesk/tiledesk-auth.service.ts +0 -3
- package/src/chat21-core/utils/constants.ts +9 -7
- package/src/chat21-core/utils/utils-message.ts +23 -1
- package/src/widget-config-template.json +2 -2
- package/src/widget-config.json +2 -1
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
--font-family-poppins: 'Poppins', 'Roboto', Arial, sans-serif;
|
|
19
19
|
--blu: #506493;
|
|
20
20
|
--gray-light-02: rgb(223, 227, 237);
|
|
21
|
-
--
|
|
21
|
+
--base-company-logo: rgb(224,106,88);
|
|
22
22
|
--header-height: 60px;
|
|
23
23
|
|
|
24
24
|
}
|
|
@@ -28,6 +28,8 @@
|
|
|
28
28
|
position: fixed;
|
|
29
29
|
top: 0;
|
|
30
30
|
left: 0;
|
|
31
|
+
bottom: 0;
|
|
32
|
+
right: 0;
|
|
31
33
|
height: 100%;
|
|
32
34
|
width: 100%;
|
|
33
35
|
z-index: 999999;
|
|
@@ -60,6 +62,52 @@
|
|
|
60
62
|
animation:blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
|
|
61
63
|
}
|
|
62
64
|
|
|
65
|
+
.loader{
|
|
66
|
+
display: block;
|
|
67
|
+
z-index: 99;
|
|
68
|
+
position: absolute;
|
|
69
|
+
top: calc( 50% - 50px);
|
|
70
|
+
left: calc( 50% - 50px);
|
|
71
|
+
width: 100px;
|
|
72
|
+
height: 100px;
|
|
73
|
+
border: 3px solid rgb(224, 106, 88);
|
|
74
|
+
border-radius: 50%;
|
|
75
|
+
|
|
76
|
+
animation: spin 7s ease-in-out;
|
|
77
|
+
animation-iteration-count: infinite;
|
|
78
|
+
transition-duration: 0.1s;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.loader:hover {
|
|
82
|
+
scale: 0.95;
|
|
83
|
+
/*Loader on hover effect*/
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.loader:active {
|
|
87
|
+
scale: 1.2;
|
|
88
|
+
/*Loader on click effect*/
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@keyframes spin {
|
|
92
|
+
0% {
|
|
93
|
+
transform: rotate(0deg);
|
|
94
|
+
border-bottom: solid 3px transparent;
|
|
95
|
+
border-top: solid 3px transparent;
|
|
96
|
+
}
|
|
97
|
+
50% {
|
|
98
|
+
transform: rotate(1800deg);
|
|
99
|
+
border: 3px solid white;
|
|
100
|
+
border-left: solid 3px transparent;
|
|
101
|
+
border-right: solid 3px transparent;
|
|
102
|
+
}
|
|
103
|
+
100% {
|
|
104
|
+
/*Reversed spinning*/
|
|
105
|
+
transform: rotate(0deg);
|
|
106
|
+
border-bottom: solid 3px transparent;
|
|
107
|
+
border-top: solid 3px transparent;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
63
111
|
#deferred-styles {
|
|
64
112
|
display: none;
|
|
65
113
|
}
|
|
@@ -225,7 +273,7 @@
|
|
|
225
273
|
|
|
226
274
|
.header-right .header-go-back .cds-text {
|
|
227
275
|
font-weight: 700;
|
|
228
|
-
color:
|
|
276
|
+
color: var(--base-company-logo);
|
|
229
277
|
}
|
|
230
278
|
|
|
231
279
|
.header-right .header-title{
|
|
@@ -272,7 +320,9 @@
|
|
|
272
320
|
}
|
|
273
321
|
|
|
274
322
|
.b-agent-demo_powered_by a {
|
|
275
|
-
display: inline-
|
|
323
|
+
display: inline-flex;
|
|
324
|
+
align-items: center;
|
|
325
|
+
gap: 10px;
|
|
276
326
|
margin-top: 30px;
|
|
277
327
|
margin-bottom: 30px;
|
|
278
328
|
text-decoration: none;
|
|
@@ -286,8 +336,7 @@
|
|
|
286
336
|
}
|
|
287
337
|
.b-agent-demo_powered_by img {
|
|
288
338
|
display: inline-block;
|
|
289
|
-
height:
|
|
290
|
-
/* margin-left: 20px; */
|
|
339
|
+
height: 40px;
|
|
291
340
|
}
|
|
292
341
|
|
|
293
342
|
/* The snackbar - position it at the bottom and in the middle of the screen */
|
|
@@ -413,8 +462,10 @@
|
|
|
413
462
|
marginY: "50px",
|
|
414
463
|
// calloutTimer: 1,
|
|
415
464
|
singleConversation: true,
|
|
416
|
-
restartConversation:
|
|
417
|
-
|
|
465
|
+
restartConversation: false,
|
|
466
|
+
hideHeaderCloseButton: true,
|
|
467
|
+
hideCloseConversationOptionMenu: true,
|
|
468
|
+
isLogEnabled:true
|
|
418
469
|
// autostart: false
|
|
419
470
|
|
|
420
471
|
};
|
|
@@ -449,6 +500,8 @@
|
|
|
449
500
|
|
|
450
501
|
window.Tiledesk('onBeforeInit', function(event_data) {
|
|
451
502
|
// console.log("onBeforeInit Tiledesk FN", event_data);
|
|
503
|
+
var brandSrc = event_data.detail.appConfigs.brandSrc? getBrandResources(event_data.detail.appConfigs.brandSrc) : null;
|
|
504
|
+
|
|
452
505
|
setTimeout(() => {
|
|
453
506
|
document.getElementById("preloader").style.display = "none";
|
|
454
507
|
if(event_data && event_data.detail && event_data.detail.appConfigs){
|
|
@@ -541,6 +594,32 @@
|
|
|
541
594
|
document.getElementById("tiledesk_widgetTitle").innerHTML = tiledesk_widgetTitle;
|
|
542
595
|
}
|
|
543
596
|
|
|
597
|
+
|
|
598
|
+
function getBrandResources(url) {
|
|
599
|
+
var xhr = new XMLHttpRequest();
|
|
600
|
+
xhr.onreadystatechange = function () {
|
|
601
|
+
if (xhr.readyState === 4) {
|
|
602
|
+
var brandJson = JSON.parse(xhr.response)
|
|
603
|
+
if(brandJson){
|
|
604
|
+
/** TITLE AND FAVICON **/
|
|
605
|
+
brandJson['WIDGET'].META_TITLE? document.body.title = brandJson['WIDGET'].META_TITLE : null;
|
|
606
|
+
brandJson['WIDGET'].FAVICON_URL? document.querySelector("link[rel~='icon']").setAttribute('href', brandJson['WIDGET'].FAVICON_URL) : null;
|
|
607
|
+
/** FOOTER-LOGO **/
|
|
608
|
+
brandJson['COMMON'].COMPANY_LOGO? document.getElementById('footer-logo').src = brandJson['COMMON'].COMPANY_LOGO : null;
|
|
609
|
+
brandJson['COMMON'].COMPANY_SITE_NAME? document.getElementById('footer-logo').alt = brandJson['COMMON'].COMPANY_SITE_NAME : null;
|
|
610
|
+
brandJson['COMMON'].COMPANY_SITE_URL? document.getElementById('footer-link').href = brandJson['COMMON'].COMPANY_SITE_URL : null;
|
|
611
|
+
/** HEADER-LOGO **/
|
|
612
|
+
brandJson['COMMON'].BASE_LOGO_NO_TEXT? document.getElementById('header-logo').src = brandJson['COMMON'].BASE_LOGO_NO_TEXT: null;
|
|
613
|
+
brandJson['COMMON'].BRAND_PRIMARY_COLOR? document.body.style.setProperty('--base-company-logo', brandJson['COMMON'].BRAND_PRIMARY_COLOR): null;
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
}
|
|
618
|
+
xhr.open('GET', url, true);
|
|
619
|
+
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
|
|
620
|
+
xhr.send();
|
|
621
|
+
}
|
|
622
|
+
|
|
544
623
|
|
|
545
624
|
|
|
546
625
|
</script>
|
|
@@ -549,9 +628,12 @@
|
|
|
549
628
|
|
|
550
629
|
<body class="website white" >
|
|
551
630
|
|
|
631
|
+
<!-- <div id="preloader">
|
|
632
|
+
<div class="logo"></div>
|
|
633
|
+
</div> -->
|
|
552
634
|
|
|
553
635
|
<div id="preloader">
|
|
554
|
-
<div class="
|
|
636
|
+
<div class="loader"></div>
|
|
555
637
|
</div>
|
|
556
638
|
|
|
557
639
|
<header id="header">
|
|
@@ -560,7 +642,7 @@
|
|
|
560
642
|
</ul> -->
|
|
561
643
|
<div class="header-left">
|
|
562
644
|
<div>
|
|
563
|
-
<img class="logo" src="./tiledesk_widget_files/logo-short.png">
|
|
645
|
+
<img id="header-logo" class="logo" src="./tiledesk_widget_files/logo-short.png">
|
|
564
646
|
</div>
|
|
565
647
|
</div>
|
|
566
648
|
<div class="header-right">
|
|
@@ -585,9 +667,9 @@
|
|
|
585
667
|
|
|
586
668
|
<footer id="footer">
|
|
587
669
|
<div class="b-agent-demo_powered_by">
|
|
588
|
-
<a href="https://console.tiledesk.com/" target="_blank" style="cursor: pointer;text-decoration: none;">
|
|
670
|
+
<a href="https://console.tiledesk.com/" target="_blank" style="cursor: pointer;text-decoration: none;" id="footer-link">
|
|
589
671
|
<span style="position: relative; top: 2px;">Powered by</span>
|
|
590
|
-
<img src="./tiledesk_widget_files/logo@2x-black.png">
|
|
672
|
+
<img src="./tiledesk_widget_files/logo@2x-black.png" id="footer-logo">
|
|
591
673
|
</a>
|
|
592
674
|
</div>
|
|
593
675
|
</footer>
|
|
@@ -14,6 +14,15 @@
|
|
|
14
14
|
@-ms-keyframes blink {0%{opacity:1;} 50%{opacity:0;} 100%{opacity:1;}} /* IE */
|
|
15
15
|
@keyframes blink {0%{opacity:1;} 50%{opacity:0;} 100%{opacity:1;}} /* Opera and prob css3 final iteration */
|
|
16
16
|
|
|
17
|
+
body{
|
|
18
|
+
--font-family-poppins: 'Poppins', 'Roboto', Arial, sans-serif;
|
|
19
|
+
--blu: #506493;
|
|
20
|
+
--gray-light-02: rgb(223, 227, 237);
|
|
21
|
+
--base-company-logo: rgb(224,106,88);
|
|
22
|
+
--header-height: 80px;
|
|
23
|
+
--footer-height: 80px;
|
|
24
|
+
}
|
|
25
|
+
|
|
17
26
|
#preloader {
|
|
18
27
|
background: #fff;
|
|
19
28
|
position: fixed;
|
|
@@ -51,6 +60,52 @@
|
|
|
51
60
|
animation:blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
|
|
52
61
|
}
|
|
53
62
|
|
|
63
|
+
.loader{
|
|
64
|
+
display: block;
|
|
65
|
+
z-index: 99;
|
|
66
|
+
position: absolute;
|
|
67
|
+
top: calc( 50% - 50px);
|
|
68
|
+
left: calc( 50% - 50px);
|
|
69
|
+
width: 100px;
|
|
70
|
+
height: 100px;
|
|
71
|
+
border: 3px solid var(--base-company-logo);
|
|
72
|
+
border-radius: 50%;
|
|
73
|
+
|
|
74
|
+
animation: spin 7s ease-in-out;
|
|
75
|
+
animation-iteration-count: infinite;
|
|
76
|
+
transition-duration: 0.1s;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.loader:hover {
|
|
80
|
+
scale: 0.95;
|
|
81
|
+
/*Loader on hover effect*/
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.loader:active {
|
|
85
|
+
scale: 1.2;
|
|
86
|
+
/*Loader on click effect*/
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
@keyframes spin {
|
|
90
|
+
0% {
|
|
91
|
+
transform: rotate(0deg);
|
|
92
|
+
border-bottom: solid 3px transparent;
|
|
93
|
+
border-top: solid 3px transparent;
|
|
94
|
+
}
|
|
95
|
+
50% {
|
|
96
|
+
transform: rotate(1800deg);
|
|
97
|
+
border: 3px solid white;
|
|
98
|
+
border-left: solid 3px transparent;
|
|
99
|
+
border-right: solid 3px transparent;
|
|
100
|
+
}
|
|
101
|
+
100% {
|
|
102
|
+
/*Reversed spinning*/
|
|
103
|
+
transform: rotate(0deg);
|
|
104
|
+
border-bottom: solid 3px transparent;
|
|
105
|
+
border-top: solid 3px transparent;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
54
109
|
#deferred-styles {
|
|
55
110
|
display: none;
|
|
56
111
|
}
|
|
@@ -86,6 +141,20 @@
|
|
|
86
141
|
height: 100%;
|
|
87
142
|
}
|
|
88
143
|
|
|
144
|
+
.container{
|
|
145
|
+
display: flex;
|
|
146
|
+
align-items: center;
|
|
147
|
+
width: 100% !important;
|
|
148
|
+
justify-content: space-around;
|
|
149
|
+
}
|
|
150
|
+
#header-logo{
|
|
151
|
+
max-height: 45px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.navbar{
|
|
155
|
+
display: flex;
|
|
156
|
+
}
|
|
157
|
+
|
|
89
158
|
#wrapper {
|
|
90
159
|
/* display: block!important; */
|
|
91
160
|
min-height: 100%;
|
|
@@ -98,19 +167,21 @@
|
|
|
98
167
|
left: 0px;
|
|
99
168
|
right: 0px;
|
|
100
169
|
overflow: hidden;
|
|
101
|
-
height:
|
|
170
|
+
height: var(--header-height);
|
|
171
|
+
font-family: var(--font-family-poppins);
|
|
102
172
|
}
|
|
103
173
|
|
|
104
174
|
#main {
|
|
175
|
+
padding: 20px;
|
|
105
176
|
padding-bottom:100px;
|
|
106
|
-
margin: 20px;
|
|
177
|
+
margin: 20px auto 20px auto;
|
|
178
|
+
/* width: 970px !important; */
|
|
179
|
+
justify-content: start;
|
|
107
180
|
|
|
108
181
|
position: absolute;
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
left: 0px;
|
|
113
|
-
right: 0px;
|
|
182
|
+
top: var(--header-height);
|
|
183
|
+
bottom: var(--footer-height);
|
|
184
|
+
overflow: scroll;
|
|
114
185
|
width: 100%;
|
|
115
186
|
}
|
|
116
187
|
|
|
@@ -119,6 +190,12 @@
|
|
|
119
190
|
margin-right: 0 !important;
|
|
120
191
|
}
|
|
121
192
|
|
|
193
|
+
@media screen and (max-width: 1020px){
|
|
194
|
+
.row{
|
|
195
|
+
width: 100% !important;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
122
199
|
|
|
123
200
|
.b_frame {
|
|
124
201
|
-webkit-box-shadow: 0px 19px 147px -41px rgba(0,0,0,0.75);
|
|
@@ -171,7 +248,7 @@
|
|
|
171
248
|
|
|
172
249
|
/* position: relative;
|
|
173
250
|
margin-top: -100px; negative value of footer height */
|
|
174
|
-
height:
|
|
251
|
+
height: var(--footer-height);
|
|
175
252
|
clear:both;
|
|
176
253
|
|
|
177
254
|
position: absolute;
|
|
@@ -180,7 +257,9 @@
|
|
|
180
257
|
}
|
|
181
258
|
|
|
182
259
|
.b-agent-demo_powered_by a {
|
|
183
|
-
display: inline-
|
|
260
|
+
display: inline-flex;
|
|
261
|
+
align-items: center;
|
|
262
|
+
gap: 10px;
|
|
184
263
|
margin-top: 30px;
|
|
185
264
|
margin-bottom: 30px;
|
|
186
265
|
text-decoration: none;
|
|
@@ -280,7 +359,7 @@
|
|
|
280
359
|
}
|
|
281
360
|
|
|
282
361
|
div.section .btn:hover{
|
|
283
|
-
background:
|
|
362
|
+
background: var(--base-company-logo);
|
|
284
363
|
color: #ffffff;
|
|
285
364
|
}
|
|
286
365
|
|
|
@@ -338,7 +417,7 @@
|
|
|
338
417
|
}
|
|
339
418
|
|
|
340
419
|
div.method_container .btn:hover{
|
|
341
|
-
background:
|
|
420
|
+
background: var(--base-company-logo);
|
|
342
421
|
color: #ffffff;
|
|
343
422
|
}
|
|
344
423
|
|
|
@@ -436,6 +515,8 @@
|
|
|
436
515
|
window.Tiledesk('onBeforeInit', function(event_data) {
|
|
437
516
|
console.log("onBeforeInit Tiledesk FN", event_data);
|
|
438
517
|
|
|
518
|
+
var brandSrc = event_data.detail.appConfigs.brandSrc? getBrandResources(event_data.detail.appConfigs.brandSrc) : null;
|
|
519
|
+
|
|
439
520
|
setTimeout(() => {
|
|
440
521
|
if(event_data && event_data.detail && event_data.detail.appConfigs){
|
|
441
522
|
|
|
@@ -633,6 +714,32 @@
|
|
|
633
714
|
);
|
|
634
715
|
}
|
|
635
716
|
|
|
717
|
+
function getBrandResources(url) {
|
|
718
|
+
var xhr = new XMLHttpRequest();
|
|
719
|
+
xhr.onreadystatechange = function () {
|
|
720
|
+
if (xhr.readyState === 4) {
|
|
721
|
+
var brandJson = JSON.parse(xhr.response)
|
|
722
|
+
if(brandJson){
|
|
723
|
+
/** TITLE AND FAVICON **/
|
|
724
|
+
brandJson['WIDGET'].META_TITLE? document.body.title = brandJson['WIDGET'].META_TITLE : null;
|
|
725
|
+
brandJson['WIDGET'].FAVICON_URL? document.querySelector("link[rel~='icon']").setAttribute('href', brandJson['WIDGET'].FAVICON_URL) : null;
|
|
726
|
+
/** FOOTER-LOGO **/
|
|
727
|
+
brandJson['COMMON'].COMPANY_LOGO? document.getElementById('footer-logo').src = brandJson['COMMON'].COMPANY_LOGO : null;
|
|
728
|
+
brandJson['COMMON'].COMPANY_SITE_NAME? document.getElementById('footer-logo').alt = brandJson['COMMON'].COMPANY_SITE_NAME : null;
|
|
729
|
+
brandJson['COMMON'].COMPANY_SITE_URL? document.getElementById('footer-link').href = brandJson['COMMON'].COMPANY_SITE_URL : null;
|
|
730
|
+
/** HEADER-LOGO **/
|
|
731
|
+
brandJson['COMMON'].BASE_LOGO_WHITE? document.getElementById('header-logo').src = brandJson['COMMON'].BASE_LOGO_WHITE : null;
|
|
732
|
+
/** HEADER-DOCS RESOURCES **/
|
|
733
|
+
document.getElementsByClassName('docs')[0].style.display = 'none'
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
xhr.open('GET', url, true);
|
|
738
|
+
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
|
|
739
|
+
xhr.send();
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
|
|
636
743
|
function onClickTestButton(event){
|
|
637
744
|
console.log('onClickTestButton: event-->',event)
|
|
638
745
|
if(event ==='hide'){
|
|
@@ -1550,8 +1657,12 @@
|
|
|
1550
1657
|
</head>
|
|
1551
1658
|
|
|
1552
1659
|
<body class="website white" >
|
|
1553
|
-
<div id="preloader">
|
|
1660
|
+
<!-- <div id="preloader">
|
|
1554
1661
|
<div class="logo"></div>
|
|
1662
|
+
</div> -->
|
|
1663
|
+
|
|
1664
|
+
<div id="preloader">
|
|
1665
|
+
<div class="loader"></div>
|
|
1555
1666
|
</div>
|
|
1556
1667
|
|
|
1557
1668
|
<div id="wrapper">
|
|
@@ -1566,7 +1677,7 @@
|
|
|
1566
1677
|
<span class="icon-bar"></span>
|
|
1567
1678
|
<span class="icon-bar"></span>
|
|
1568
1679
|
</button>
|
|
1569
|
-
<
|
|
1680
|
+
<img src="tiledesk_widget_files/logo.png" id="header-logo">
|
|
1570
1681
|
</div>
|
|
1571
1682
|
|
|
1572
1683
|
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
|
@@ -1584,9 +1695,8 @@
|
|
|
1584
1695
|
</nav>
|
|
1585
1696
|
</header>
|
|
1586
1697
|
|
|
1587
|
-
<div id="main"
|
|
1588
|
-
<div class="row">
|
|
1589
|
-
<div class="col-md-7">
|
|
1698
|
+
<div id="main">
|
|
1699
|
+
<div class="row" style="width: 70%;">
|
|
1590
1700
|
<h1 style="min-height: 39px;">TEST ACTIONS</h1>
|
|
1591
1701
|
<h3 id="project_name" style="min-height: 39px;"></h3>
|
|
1592
1702
|
<div class="row method_container">
|
|
@@ -2373,24 +2483,21 @@
|
|
|
2373
2483
|
<button class="btn btn-light" onclick="onClickClearHistory()">Clear <i class="fa fa-trash" aria-hidden="true"></i></button>
|
|
2374
2484
|
</div>
|
|
2375
2485
|
</div>
|
|
2376
|
-
</div>
|
|
2377
2486
|
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
<a href="" data-toggle="modal" data-target="#embedModal" id="enbed" style="display: none;"><i class="fa-code fa"></i>Embed</a>
|
|
2387
|
-
<!-- <a href="mailto:?subject=Tiledesk%20widget%20test%20page"><i class="fa-envelope-o fa" target="_blank"></i>Email</a> -->
|
|
2388
|
-
<a href="" data-toggle="modal" data-target="#shareModal"><i class="fa-reply fa"></i>Share</a>
|
|
2487
|
+
<div class="row" style="width: 100%;">
|
|
2488
|
+
<h1 id="project_name" style="min-height: 39px;"></h1>
|
|
2489
|
+
<h2></h2>
|
|
2490
|
+
<div class="b_integrations_agent_links">
|
|
2491
|
+
<a href="" data-toggle="modal" data-target="#embedModal" id="enbed" style="display: none;"><i class="fa-code fa"></i>Embed</a>
|
|
2492
|
+
<!-- <a href="mailto:?subject=Tiledesk%20widget%20test%20page"><i class="fa-envelope-o fa" target="_blank"></i>Email</a> -->
|
|
2493
|
+
<a href="" data-toggle="modal" data-target="#shareModal"><i class="fa-reply fa"></i>Share</a>
|
|
2494
|
+
</div>
|
|
2389
2495
|
</div>
|
|
2390
|
-
|
|
2391
|
-
<div class="col-md-6"></div>
|
|
2496
|
+
|
|
2392
2497
|
</div>
|
|
2393
2498
|
|
|
2499
|
+
|
|
2500
|
+
|
|
2394
2501
|
|
|
2395
2502
|
<div class="modal fade" tabindex="-1" id="embedModal" role="dialog">
|
|
2396
2503
|
<div class="modal-dialog">
|
|
@@ -2469,9 +2576,9 @@
|
|
|
2469
2576
|
|
|
2470
2577
|
<footer id="footer">
|
|
2471
2578
|
<div class="b-agent-demo_powered_by">
|
|
2472
|
-
<a href="https://console.tiledesk.com/" target="_blank" style="cursor: pointer;text-decoration: none;">
|
|
2579
|
+
<a href="https://console.tiledesk.com/" target="_blank" style="cursor: pointer;text-decoration: none;" id="footer-link">
|
|
2473
2580
|
<span style="position: relative; top: 2px;">Powered by</span>
|
|
2474
|
-
<img src="./tiledesk_widget_files/logo@2x-black.png">
|
|
2581
|
+
<img src="./tiledesk_widget_files/logo@2x-black.png" id="footer-logo">
|
|
2475
2582
|
</a>
|
|
2476
2583
|
</div>
|
|
2477
2584
|
</footer>
|