kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Fix crashes when attempting full screen mode on browsers that don't support it
Fixes #311print-window-tiddler
rodzic
ac81d9d43f
commit
ef59a3743f
plugins/tiddlywiki/fullscreen
|
@ -37,9 +37,11 @@ var toggleFullscreen = function() {
|
|||
|
||||
exports.startup = function() {
|
||||
// Install the full screen handler
|
||||
$tw.rootWidget.addEventListener("tw-full-screen",function(event) {
|
||||
toggleFullscreen();
|
||||
});
|
||||
if(_requestFullscreen) {
|
||||
$tw.rootWidget.addEventListener("tw-full-screen",function(event) {
|
||||
toggleFullscreen();
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
})();
|
||||
|
|
Ładowanie…
Reference in New Issue