12345678910111213141516171819202122232425262728293031 |
- smalltalk.addPackage('Trapped-Demo', {});
- smalltalk.addClass('App', smalltalk.TrappedPlainModel, [], 'Trapped-Demo');
- smalltalk.addMethod(
- "_initialize",
- smalltalk.method({
- selector: "initialize",
- fn: function (){
- var self=this;
- smalltalk.send(self,"_initialize",[],smalltalk.TrappedPlainModel);
- smalltalk.send(self,"_payload_",[smalltalk.HashedCollection._fromPairs_([smalltalk.send("items","__minus_gt",[["hello", "world"]]),smalltalk.send("title","__minus_gt",["To-Do List"])])]);
- return self}
- }),
- smalltalk.App);
- smalltalk.addClass('AppView', smalltalk.Widget, [], 'Trapped-Demo');
- smalltalk.addMethod(
- "_renderOn_",
- smalltalk.method({
- selector: "renderOn:",
- fn: function (html){
- var self=this;
- smalltalk.send(smalltalk.send(html,"_h2",[]),"_trapShow_",[["title"]]);
- smalltalk.send(smalltalk.send(html,"_p",[]),"_trapShow_",[["items"]]);
- return self}
- }),
- smalltalk.AppView);
|