Skip to content

Instantly share code, notes, and snippets.

@brunoocasali
Last active June 24, 2019 11:55
Show Gist options
  • Save brunoocasali/0c1b2ef8f46d9515e78a9e7ed639ead2 to your computer and use it in GitHub Desktop.
Save brunoocasali/0c1b2ef8f46d9515e78a9e7ed639ead2 to your computer and use it in GitHub Desktop.
modal
import Ember from 'ember';
export default Ember.Component.extend({
});
import Ember from 'ember';
export default Ember.Component.extend({
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
array: [
{ text: 'one', more: 'i am the number 1' },
{ text: 'two', more: 'i am the number 2' },
{ text: 'three', more: 'i am the number 3' }
]
});
<ul>
{{#each array as |item|}}
<ListItem @item={{item}} />
{{/each}}
</ul>
<!-- I want to call see more just one time and update the data inside of it-->
<SeeMore />
<li>
{{@item.text}}:
<!-- Call modal here-->
<a href="">more info</a>
</li>
<div class="modal">
<h3>{{@item.more}}</h3>
</div>
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment