Skip to content

Instantly share code, notes, and snippets.

@kingpin2k
kingpin2k / application.route.js
Last active August 30, 2015 18:00 — forked from pablobm/application.route.js
Action skips route
import Ember from 'ember';
export default Ember.Route.extend({
actions: {
ping(from) {
console.log("ApplicationRoute^ping from", from);
}
},
});