aboutsummaryrefslogblamecommitdiffstats
path: root/source/App.js
blob: 77dee2a9408bc2efbb8a3e0f6b52e4c50a36eab2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                                
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");
	}
});