1
0
Fork 0

fixed typo

This commit is contained in:
Frank Celler 2013-03-23 19:03:45 +01:00
parent 6c0785aa04
commit c3cbf1d4cd
1 changed files with 2 additions and 1 deletions

View File

@ -244,9 +244,10 @@ function lookupCallbackAction (route, action) {
defn = "func = (function() { var callback = " + action.callback + "; return callback;})();";
env = {
module: module.root,
require: funcion (path) {
require: function (path) {
return module.root.require(path);
}
};
try {