Skip to content

Instantly share code, notes, and snippets.

@tabiodun
Forked from e00dan/application.controller.js
Last active April 16, 2019 18:24
Show Gist options
  • Save tabiodun/d9a61372b0dddeed7f5e3e084ec5e4a7 to your computer and use it in GitHub Desktop.
Save tabiodun/d9a61372b0dddeed7f5e3e084ec5e4a7 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
publishable: true,
actions: {
publish() {
console.log('publish');
}
}
});
<button {{action (if publishable 'publish' (action (mut undefProp)))}}>Publish</button>
<br>
{{#fb-table as table}}
header
{{/fb-table}}
<br>
import Ember from 'ember';
export default Ember.Component.extend({
});
import Ember from 'ember';
export default Ember.Component.extend({
headers: ['id', 'name', 'type'],
data: [{
'id': 1,
'name': 'john',
'type': 'admin'
},{
'id': 2,
'name': 'jane',
'type': 'user'
}],
});
{{yield
(hash
header=(component
'fb-table-header'
)
)
}}
{
"version": "0.4.16",
"EmberENV": {
"FEATURES": {}
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.1.0/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.1.0/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.1.0/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment