From 9fb8ef25ed84d22e16db8eb9929d2e69ad8e3736 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sun, 24 Mar 2013 12:20:33 +0000 Subject: [PATCH] Ensure we don't register file information for externally loaded tiddlers Also make sure some globals like setInterval are available on the server --- core/boot.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/boot.js b/core/boot.js index 80acce8c4..cab6b9caf 100644 --- a/core/boot.js +++ b/core/boot.js @@ -864,6 +864,10 @@ $tw.modules.execute = function(moduleName,moduleRoot) { exports: {}, console: console, process: process, + setInterval: setInterval, + clearInterval: clearInterval, + setTimeout: setTimeout, + clearTimeout: clearTimeout, $tw: $tw, require: function(title) { return $tw.modules.execute(title,name);