blob: 77dee2a9408bc2efbb8a3e0f6b52e4c50a36eab2 (
plain) (
tree)
|
|
enyo.kind({
name: "App",
fit: true,
components:[
{name: "hello", content: "Hello World", allowHtml: true, ontap: "helloWorldTap"}
],
helloWorldTap: function(inSender, inEvent) {
this.$.hello.addContent("<br/><b>hello</b> control was tapped");
}
});
|