isFullscreen: function()

in appx/Power BI Embedded/powerbi-sample-app/powerbi-sample-app/Scripts/powerbi.js [76:85]


        isFullscreen: function () {
            var options = ['fullscreenElement', 'webkitFullscreenElement', 'mozFullscreenScreenElement', 'msFullscreenElement'];
            for (var i = 0; i < options.length; i++) {
                if (document[options[i]] === this.iframe) {
                    return true;
                }
            }

            return false;
        }