Skip to content

Instantly share code, notes, and snippets.

@kumkanillam
Created February 23, 2018 14:19
Show Gist options
  • Save kumkanillam/93433fc4e3957a04427dfe6f2b638a7b to your computer and use it in GitHub Desktop.
Save kumkanillam/93433fc4e3957a04427dfe6f2b638a7b to your computer and use it in GitHub Desktop.
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
actions:{
keyPressClick(){
console.log('keyPressClick');
},
onClick(){
console.log('onClick');
},
}
});
<h1>Welcome to {{appName}}</h1>
<br>
{{input value=appName key-press="keyPressClick" click=(action "onClick")}}
<br>
{{outlet}}
<br>
<br>
{
"version": "0.13.0",
"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.16.2",
"ember-template-compiler": "2.16.2",
"ember-testing": "2.16.2"
},
"addons": {
"ember-data": "2.16.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment