enyo.kind({ name: "App", fit: true, components:[ {name: "hello", content: "Hello World", allowHtml: true, ontap: "helloWorldTap"} ], helloWorldTap: function(inSender, inEvent) { this.$.hello.addContent("
hello control was tapped"); } });