Skip to content

Instantly share code, notes, and snippets.

@ruz
Last active October 12, 2017 02:35
Show Gist options
  • Save ruz/f06db4499c0c2806c5a3 to your computer and use it in GitHub Desktop.
Save ruz/f06db4499c0c2806c5a3 to your computer and use it in GitHub Desktop.
key press action has no access to event
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
actions: {
keyUp() { console.log( "ku:", arguments) },
keyPress() { console.log( "kp:", arguments) }
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{text}}
<br>
{{input key-up="keyUp" key-press="keyPress" autocomplete="off"}}
<br>
<br>
{
"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