mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-19 08:14:50 +00:00
31 lines
615 B
JavaScript
31 lines
615 B
JavaScript
|
/*\
|
||
|
title: $:/plugins/tiddlywiki/fullscreen/init.js
|
||
|
type: application/javascript
|
||
|
module-type: browser-startup
|
||
|
|
||
|
Message handler for full screen mode
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
var toggleFullScreen = function() {
|
||
|
if(document[$tw.browser.isFullScreen]) {
|
||
|
document[$tw.browser.cancelFullScreen]();
|
||
|
} else {
|
||
|
document.documentElement[$tw.browser.requestFullScreen]();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
exports.startup = function() {
|
||
|
// Install the full screen handler
|
||
|
document.addEventListener("tw-full-screen",function(event) {
|
||
|
toggleFullScreen();
|
||
|
},false);
|
||
|
};
|
||
|
|
||
|
})();
|