Expose module.exports to tiddler modules

Needed to incorporate an upcoming third-party library.

@natecain - do you think this is OK from a compatibility perspective?
print-window-tiddler
Jermolene 2014-07-20 18:06:19 +01:00
rodzic e3dc00573d
commit beabae8d2b
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -615,7 +615,7 @@ $tw.modules.execute = function(moduleName,moduleRoot) {
tiddler = $tw.wiki.getTiddler(name) || $tw.wiki.getTiddler(name + ".js") || $tw.wiki.getTiddler(moduleName) || $tw.wiki.getTiddler(moduleName + ".js") ,
_exports = {},
sandbox = {
module: {},
module: {exports: _exports},
//moduleInfo: moduleInfo,
exports: _exports,
console: console,