##// END OF EJS Templates
the build script is updated
the build script is updated

File last commit:

r0:7110eac54b19 v1.0.0 default
r2:b698f0e8883c default
Show More
HttpApplication.js
10 lines | 264 B | application/javascript | JavascriptLexer
/ src / main / js / HttpApplication.js
define([
"dojo/_base/declare",
"./BaseApplication",
"dojo/node!http"
], function(declare, base, http) {
return declare(base, {
_createServer : function(options, handler) {
return http.createServer(handler);
}
});
});