enyo.kind({
name: "myapp.MainView",
published: {
url: "http://www.youtobe.com/...."
},
components: [{
name: "iframe",
tag: "iframe",
classes: "enyo-fill",
style: "border: none;"
}, ],
rendered: function () {
this.inherited(arguments);
this.urlChanged();
},
urlChanged: function () {
if (this.url) this.$.iframe.src=this.url;
}
});