JSFiddle - React, Tailwind, and code Playground
by enyojs
JavaScript
enyo.kind({
name: "MySample",
components: [
{kind: "onyx.Toolbar", content: "Your sample here"},
{name:"test", ontap:"test", style:"border:1px solid transparent;", components: [
{style:"height:50px; background:lightblue; margin-bottom:50px;", content:"foo"},
{style:"height:50px; background:lightblue; margin-bottom:50px;", content:"foo"},
{style:"height:50px; background:lightblue; margin-bottom:50px;", content:"foo"}
]}
],
test: function() {
alert(JSON.stringify(this.$.test.getBounds()));
}
});
new MySample({fit:true}).write();