mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-03-25 20:29:45 -04:00
Merge pull request #172 from thisandagain/bugfix/120
Fix call to jar.get. Resolves GH-120
This commit is contained in:
commit
73b3a91a05
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…
Add table
Reference in a new issue