Skip to content

Instantly share code, notes, and snippets.

@ckung
Last active January 3, 2016 07:08
Show Gist options
  • Save ckung/8426984 to your computer and use it in GitHub Desktop.
Save ckung/8426984 to your computer and use it in GitHub Desktop.
index.hbs:
{{#photo}}
<span {{action "run" target="controllers.photo"}}></span>
{{/photo}}
------------------------------------
photo.hbs:
{{yield}}
-----------------------------------
App.IndexController = Ember.ObjectController.extend({
actions: {
'run': function(){//don't run me!!}
}
});
-------------------------------
App.PhotoComponent = Ember.Component.extend({});
App.PhotoController = Ember.ObjectController.extend({
actions: {
'run': function(){//runme!!}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment