##// 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
HelloModule.js
8 lines | 305 B | application/javascript | JavascriptLexer
/ src / main / js / HelloModule.js
cin
initial port of implab/web
r0 define(["dojo/_base/declare","./HttpResponse"],function(declare,HttpResponse) {
return declare(null,{
invoke: function(/*httpRequest, next*/) {
return new HttpResponse("Hello, world!",{
contentType : "text/plain; charset=utf-8"
});
}
});
});