Removed outdated comment

print-window-tiddler
Jermolene 2014-10-18 17:46:19 +01:00
rodzic 9a36dc61ec
commit 6c76670137
1 zmienionych plików z 1 dodań i 14 usunięć

Wyświetl plik

@ -4,20 +4,7 @@ type: application/javascript
The main boot kernel for TiddlyWiki. This single file creates a barebones TW environment that is just sufficient to bootstrap the modules containing the main logic of the application.
On the server this file is executed directly to boot TiddlyWiki. In the browser, this file is packed into a single HTML file along with other elements:
# bootprefix.js
# <module definitions>
# boot.js
The module definitions on the browser look like this:
$tw.defineModule("MyModule","moduletype",function(module,exports,require) {
// Module code inserted here
return exports;
});
In practice, each module is wrapped in a separate script block.
On the server this file is executed directly to boot TiddlyWiki. In the browser, this file is packed into a single HTML file.
\*/