I have a link and I'd like to open the link in the new tab. The problem is : I send object parameters.
HTML :
<a ng-click="go(row)" ></a>
JS :
$state.go('link', {
'search': {
'obj': {
'id': something
}
}
});
I have already tried href and ng-href without success. Thank you.