@chat21/chat21-web-widget 5.0.59-rc.4 → 5.0.60-rc.1
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
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# chat21-web-widget ver 5.0
|
|
2
2
|
|
|
3
|
+
### 5.0.60-rc.1
|
|
4
|
+
- bug-fixed: index.html and index-dev.html pages don't load widet on mobile browsers
|
|
5
|
+
|
|
6
|
+
### 5.0.59 in PROD
|
|
7
|
+
|
|
3
8
|
### 5.0.59-rc.4
|
|
4
9
|
- bug-fixed: texarea remains disabled if messages array has the last (non ordered) timestamp message set with 'disabledTextArea' set to true
|
|
5
10
|
|
package/package.json
CHANGED
|
@@ -417,6 +417,10 @@
|
|
|
417
417
|
fjs.parentNode.insertBefore(js, fjs);
|
|
418
418
|
}(document, 'script', 'tiledesk-jssdk'));
|
|
419
419
|
|
|
420
|
+
window.addEventListener('load', (event)=> {
|
|
421
|
+
document.dispatchEvent(new Event('mousemove'))
|
|
422
|
+
})
|
|
423
|
+
|
|
420
424
|
window.Tiledesk('onLoadParams', function(event_data) {
|
|
421
425
|
console.log("onLoadParams Tiledesk FN", event_data);
|
|
422
426
|
window.tiledesk.open();
|
|
@@ -217,6 +217,10 @@
|
|
|
217
217
|
fjs.parentNode.insertBefore(js, fjs);
|
|
218
218
|
}(document, 'script', 'tiledesk-jssdk'));
|
|
219
219
|
|
|
220
|
+
window.addEventListener('load', (event)=> {
|
|
221
|
+
document.dispatchEvent(new Event('mousemove'))
|
|
222
|
+
})
|
|
223
|
+
|
|
220
224
|
window.Tiledesk('onLoadParams', function(event_data) {
|
|
221
225
|
console.log("onLoadParams Tiledesk FN", event_data);
|
|
222
226
|
// window.Tiledesk('signInWithCustomToken', 'JWT eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2MDliOGVmYTg3MzJlYjAwMTQxNzYzZDlfNWU0ZWNiOThiNzhlZTQwMDE3NDA2MTEwIiwiZmlyc3RuYW1lIjoiS2VsbHkiLCJsYXN0bmFtZSI6IkdyYWNlIiwiZW1haWwiOiJncmFjZUBlbWFpbG5hLmNvIiwic3ViIjoidXNlcmV4dGVybmFsIiwiYXVkIjoiaHR0cHM6Ly90aWxlZGVzay5jb20vcHJvamVjdHMvNjA5YjhlZmE4NzMyZWIwMDE0MTc2M2Q5IiwiaWF0IjoxNjQxODAzODk0fQ.p0reTwd25p93CsDTyQa8tkihgFxThAI4DXloNc6vbXw')
|