mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 01:25:52 -05:00
Fix call to jar.get. Resolves GH-120
This commit is contained in:
parent
b09d191dd5
commit
44f3101069
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ Jar.use = function (name, uri, callback) {
|
|||
uri: uri
|
||||
}, function (err) {
|
||||
if (err) return callback(err);
|
||||
module.get(name, callback);
|
||||
Jar.get(name, callback);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue