I have an AngularJs app which runs in two parts. The "master" portion runs in a parent window, and the "child" portion(s) run in iframe(s) within that window. The app is structured such that the iframe(s) can be popped out and run in their own windows (which is why they are implemented as iframes).
The issue I have is that the app behaves differently when "docked" v. in its own window.
Specifically I have
<div ng-controller="MyCtrl">status = {{wrapper.status}}</div>
Which when popped out correctly displays "status=1", but when docked displays "status = {{wrapper.status}}"