mirror of https://gitee.com/bigwinds/arangodb
fixed typo
This commit is contained in:
parent
6c0785aa04
commit
c3cbf1d4cd
|
@ -244,9 +244,10 @@ function lookupCallbackAction (route, action) {
|
||||||
defn = "func = (function() { var callback = " + action.callback + "; return callback;})();";
|
defn = "func = (function() { var callback = " + action.callback + "; return callback;})();";
|
||||||
env = {
|
env = {
|
||||||
module: module.root,
|
module: module.root,
|
||||||
require: funcion (path) {
|
require: function (path) {
|
||||||
return module.root.require(path);
|
return module.root.require(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue