@chat21/chat21-ionic 3.4.27-rc18 → 3.4.27-rc19

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
@@ -8,6 +8,9 @@
8
8
  ### **Copyrigth**:
9
9
  *Tiledesk SRL*
10
10
 
11
+ # 3.4.27-rc19
12
+ - **added**: window.parent['openTicketOnHDA']
13
+
11
14
  # 3.4.27-rc18
12
15
  - **added**: triggerOnUpdateNewConversationBadge to update conversation badge count in parent component
13
16
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@chat21/chat21-ionic",
3
3
  "author": "Tiledesk SRL",
4
- "version": "3.4.27-rc18",
4
+ "version": "3.4.27-rc19",
5
5
  "license": "MIT License",
6
6
  "homepage": "https://tiledesk.com/",
7
7
  "repository": {
@@ -1938,10 +1938,10 @@ export class ConversationDetailPage implements OnInit, OnDestroy, AfterViewInit
1938
1938
  }
1939
1939
 
1940
1940
 
1941
- onOpenTicket() {
1941
+ onOpenTicket(event) {
1942
1942
  this.logger.debug('[CONVS-DETAIL] openTicketOnExternalService - conversationWith ', this.conversationWith)
1943
- if(window['openTicketOnHDA']){
1944
- window['openTicketOnHDA'](this.conversationWith)
1943
+ if(window.parent['openTicketOnHDA']){
1944
+ window.parent['openTicketOnHDA'](this.conversationWith)
1945
1945
  }
1946
1946
 
1947
1947
  }