1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 03:57:21 +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

@ -13,6 +13,7 @@ title: Features
* Familiar user interface elements like <$button message="tw-modal" param="SampleWizard" class="btn btn-inverse">wizards</$button> and <$button message="tw-notify" param="SampleNotification" class="btn btn-inverse">notifications</$button>
* Easily [[import|ImportTiddlers]] content via drag and drop, copy and paste, or browsing for local files
* TiddlyWiki is [[surprisingly scalable|Scalability]] to many thousands of tiddlers and megabytes of content
* Try out the <$button message="tw-full-screen">full screen support</$button>
* Explore the [[D3.js visualisation plugin|http://five.tiddlywiki.com/d3demo.html]]
* Try out the [[CodeMirror plugin|http://five.tiddlywiki.com/codemirrordemo.html]]
* Many internal improvements:

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);
});
};
})();