Skip to content

Instantly share code, notes, and snippets.

@marcioj
Created February 22, 2015 19:35
Show Gist options
  • Select an option

  • Save marcioj/9f4c1afb85261d6cb731 to your computer and use it in GitHub Desktop.

Select an option

Save marcioj/9f4c1afb85261d6cb731 to your computer and use it in GitHub Desktop.
App.IndexController = Ember.Controller.extend({
say: function(msg) {
console.log("Hello " + msg);
}
});
App.IndexRoute = Ember.Route.extend({
setupController: function(controller) {
controller.say("world");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment