Last active
June 21, 2016 20:09
-
-
Save ryanabel03/18f690371f7d6d9c7ee46ad931a3b9a3 to your computer and use it in GitHub Desktop.
New Twiddle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
actions: { | |
selectSuperhero(pub, hero) { | |
this.attrs.selectSuperhero(hero, pub); | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'li', | |
click() { | |
this.attrs.select(this.get('hero')); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'ul' | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
publishers: [ | |
Em.Object.create({ | |
name: 'DC Comics', | |
superheroes: [ | |
Em.Object.create({name: "Batman"}), | |
Em.Object.create({name: "Superman"}), | |
Em.Object.create({name: "Flash"}) | |
]}), | |
Em.Object.create({ | |
name: 'Marvel Comics', | |
superheroes: [ | |
Em.Object.create({name: "Iron Man"}), | |
Em.Object.create({name: "Thor"}), | |
Em.Object.create({name: "Black Widow"}) | |
]}) | |
], | |
actions: { | |
selectSuperhero(hero, publisher) { | |
alert('selected ' + hero.get('name') + ' of ' + publisher.get('name')); | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.9.3", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "2.6.0", | |
"ember-data": "2.6.1", | |
"ember-template-compiler": "2.6.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment