Correct module definition in the browser

The previous logic was preventing modules being executed that weren't
baked into a script tag.
This commit is contained in:
Jeremy Ruston 2013-04-10 16:56:17 +01:00
parent 94287c9ac3
commit 0a37f6bf5b
1 changed files with 2 additions and 2 deletions

View File

@ -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;