Lines Matching refs:Fullscreen
3984 function Fullscreen(el) { class
3988 this.isFullscreen = window.readCookie(Fullscreen.COOKIE_) === 'true';
3998 Fullscreen.COOKIE_ = 'fullscreen';
4005 Fullscreen.CLASSES_ = {
4016 Fullscreen.prototype.toggleHandler_ = function(event) { class
4025 Fullscreen.prototype.activate_ = function() {
4026 this.icon.toggleClass(Fullscreen.CLASSES_.fullscreen, !this.isFullscreen);
4027 this.icon.toggleClass(Fullscreen.CLASSES_.fullscreenExit, this.isFullscreen);
4028 this.html.toggleClass(Fullscreen.CLASSES_.mode, this.isFullscreen);
4034 Fullscreen.prototype.toggle = function() {
4036 window.writeCookie(Fullscreen.COOKIE_, this.isFullscreen, null);
4045 new Fullscreen($(this));