Skip to content

Instantly share code, notes, and snippets.

View lukecoy's full-sized avatar
🎯
Focusing

Luke Coy lukecoy

🎯
Focusing
View GitHub Profile
@lukecoy
lukecoy / controllers.application.js
Last active August 8, 2019 21:53
controller bind
import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
actionThatShouldNotBeOverriden() {
console.log('yay');
}
}
});
@lukecoy
lukecoy / controllers.application.js
Created June 20, 2018 00:41
Transitioning to a route (declared first) with the same path name doesn't work (Check the console)
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});