Skip to content

Instantly share code, notes, and snippets.

@ericf
Created December 22, 2011 00:21
Show Gist options
  • Select an option

  • Save ericf/1508344 to your computer and use it in GitHub Desktop.

Select an option

Save ericf/1508344 to your computer and use it in GitHub Desktop.
var app = new Y.App(),
view = new Y.View();
view.render = function () {
this.get('container').set('text', 'Hello World!');
return this;
};
app.render().showView(view.render());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment