I'm attempting to use Angular to open a popup window in my situation.
Here's what I've got:
<a ng-href = "window.open('{{videoLink}}')" >open a video</a>
When I try this, I get a 'Not found' error in the browser.
However, it does open the video, but in another tab in the browser.
<a ng-href = {{videoLink}}>open a video</a>
How can I successfully open my video in a popup?
Thank you!