fabiobiondi / angular-fullscreen

AngularJS HTML5 Fullscreen
214 stars 107 forks source link

fixing firefox bug #22

Closed CosticaPuntaru closed 10 years ago

CosticaPuntaru commented 10 years ago

on firefox the mozfullscreenchange event is fired on the document not on the element, so the full screen will work only once to fix that you need to do this: angular.element(document).on('fullscreenchange webkitfullscreenchange mozfullscreenchange', function(){

CosticaPuntaru commented 10 years ago

also there should be the a msfullscreenchange for the internetexploder browser

cef62 commented 10 years ago

Thanks @CosticaPuntaru