2629 - Open ticket lines on new window #465

Merged
carlosjr merged 1 commits from 2629-ticket_lines_newtab into dev 2020-11-24 11:39:50 +00:00
2 changed files with 6 additions and 2 deletions

View File

@ -50,7 +50,7 @@ export function directive($state, $window) {
link: function($scope, $element, $attrs) {
const data = $scope.$eval($attrs.vnAnchor);
$element.on('click', event => {
if (ctrlPressed)
if (ctrlPressed || data.target == '_blank')
openNewTab($state, $window, event, data);
else
changeState($state, event, data);

View File

@ -126,7 +126,11 @@
</vn-td>
<vn-td actions>
<vn-icon-button
vn-anchor="::{state: 'ticket.card.sale', params: {id: ticket.id}}"
vn-anchor="::{
state: 'ticket.card.sale',
params: {id: ticket.id},
target: '_blank'
}"
vn-tooltip="Go to lines"
icon="icon-lines">
</vn-icon-button>