1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-09-09 22:36:05 +00:00

Make the full screen plugin work again

This commit is contained in:
Jeremy Ruston
2013-10-25 12:53:58 +01:00
parent 62b72f6bd1
commit eb5a8253ba
2 changed files with 3 additions and 2 deletions

View File

@@ -22,9 +22,9 @@ var toggleFullScreen = function() {
exports.startup = function() {
// Install the full screen handler
document.addEventListener("tw-full-screen",function(event) {
$tw.rootWidget.addEventListener("tw-full-screen",function(event) {
toggleFullScreen();
},false);
});
};
})();