ember-cli 1.13.1
This commit is contained in:
parent
780b5ddb6c
commit
58779a4a7d
13 changed files with 63 additions and 31 deletions
3
app/pods/components/site-logo/component.js
Normal file
3
app/pods/components/site-logo/component.js
Normal file
|
@ -0,0 +1,3 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Component.extend({});
|
10
app/pods/components/x-application/component.js
Normal file
10
app/pods/components/x-application/component.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
classNames: ["flakes-frame"],
|
||||
|
||||
didInsertElement: function() {
|
||||
FlakesFrame.init();
|
||||
},
|
||||
|
||||
});
|
1
app/pods/components/x-application/template.hbs
Normal file
1
app/pods/components/x-application/template.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
{{yield}}
|
Reference in a new issue