AngularJS ディレクティブ内で orientationchange イベントを呼び出す方法はありますか?
私は現在angular-masonryで作業しており、モバイル デバイスの向きが変わったときに石積みを更新/更新しようとしています。
私はこれを見つけましたが、Angular 内の $window サービスでこれを行う方法を考えています
window.addEventListener("orientationchange", function() {
// Announce the new orientation number
console.log(window.orientation);
}, false);