kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Correct module definition in the browser
The previous logic was preventing modules being executed that weren't baked into a script tag.print-window-tiddler
rodzic
94287c9ac3
commit
0a37f6bf5b
|
@ -594,8 +594,8 @@ $tw.Wiki.prototype.defineTiddlerModules = function() {
|
|||
if(tiddler.hasField("module-type")) {
|
||||
switch (tiddler.fields.type) {
|
||||
case "application/javascript":
|
||||
// We don't need to register JavaScript tiddlers in the browser
|
||||
if(!$tw.browser) {
|
||||
// We only define modules that haven't already been defined, because in the browser modules in system tiddlers are defined in inline script
|
||||
if(!$tw.utils.hop($tw.modules.titles,tiddler.fields.title)) {
|
||||
$tw.modules.define(tiddler.fields.title,tiddler.fields["module-type"],tiddler.fields.text);
|
||||
}
|
||||
break;
|
||||
|
|
Ładowanie…
Reference in New Issue