Skip to content

Instantly share code, notes, and snippets.

View jrowlingson's full-sized avatar
👋
Oh hi!

Jack Rowlingson jrowlingson

👋
Oh hi!
View GitHub Profile
@jrowlingson
jrowlingson / application.controller.js
Last active August 28, 2015 18:18 — forked from patrickarlt/application.controller.js
ember-with-custom-events
import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
doSomethingWithRating: function () {
console.log('action fired from rateitem event with args', arguments);
}
}