From fe4a8fbf6ad73b6bc8f57d16c44f0ca4d3bf9450 Mon Sep 17 00:00:00 2001 From: Gary Katsevman Date: Mon, 15 Sep 2014 14:53:20 -0400 Subject: [PATCH] Export isFullScreen correctly. Export isFullscreen as well. --- src/js/exports.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/js/exports.js b/src/js/exports.js index 708ded2a64..b7fa1d5f7d 100644 --- a/src/js/exports.js +++ b/src/js/exports.js @@ -79,7 +79,8 @@ goog.exportProperty(vjs.Player.prototype, 'supportsFullScreen', vjs.Player.proto goog.exportProperty(vjs.Player.prototype, 'currentType', vjs.Player.prototype.currentType); goog.exportProperty(vjs.Player.prototype, 'requestFullScreen', vjs.Player.prototype.currentType); goog.exportProperty(vjs.Player.prototype, 'cancelFullScreen', vjs.Player.prototype.currentType); -goog.exportProperty(vjs.Player.prototype, 'isFullScreen', vjs.Player.prototype.currentType); +goog.exportProperty(vjs.Player.prototype, 'isFullScreen', vjs.Player.prototype.isFullScreen); +goog.exportProperty(vjs.Player.prototype, 'isFullscreen', vjs.Player.prototype.isFullscreen); goog.exportSymbol('videojs.MediaLoader', vjs.MediaLoader); goog.exportSymbol('videojs.TextTrackDisplay', vjs.TextTrackDisplay);