ウィンドウ イベントから AngularJS コントローラー関数をトリガーしようとしています。ただし、関数内の $http() は実行されません。止まるだけです。
window.addEventListener("message", function(msg) {
// this works!!
alert(angular.element(document.getElementById('ListFindRooms')).scope().var);
// this kinda works, but Angular $http() inside the funciton is not executed
angular.element(document.getElementById('ListFindRooms')).scope().function();
}
});