This commit is contained in:
Carlos Jimenez Ruiz 2019-03-11 11:30:32 +01:00
commit de88977cd9
1 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,8 @@ class Controller {
} }
goToTicket(ticketID) { goToTicket(ticketID) {
this.$state.go('ticket.card.sale', {id: ticketID}); let url = this.$state.href('ticket.card.sale', {id: ticketID}, {absolute: true});
window.open(url, '_blank');
} }
onMoreOpen() { onMoreOpen() {