Somewhat of a novice to AngularJS, and I have question regarding an AngularJS application, and a popup that does not use Angular.
For example: An Angular application contains a directive that opens up a popup, sharing some of the scoped variables in the url as parameters. The popup contains some Prototype classes that manipulate the data, and returns an object, which the AngularJS application needs. I have minimal control of the prototype JS, as that code is somewhat legacy. I have attempted selecting an element in the Angular Application from the popup via jQuery, however this doesn't seem like the correct approach to solve this issue. How do you 'share' data between a non-AngularJS popup window and an AngularJS application?