equal
deleted
inserted
replaced
|
1 import Ember from 'ember'; |
|
2 |
|
3 export default Ember.Route.extend({ |
|
4 model() { |
|
5 return this.modelFor('application'); |
|
6 }, |
|
7 |
|
8 actions : { |
|
9 didTransition() { |
|
10 this.controllerFor('application').get('player').displayMetadata('notice'); |
|
11 } |
|
12 } |
|
13 }); |