Skip to content

Instantly share code, notes, and snippets.

@cibernox
Last active February 28, 2017 10:51
Show Gist options
  • Select an option

  • Save cibernox/e77d257e97f998c16771e0a78aa8cb56 to your computer and use it in GitHub Desktop.

Select an option

Save cibernox/e77d257e97f998c16771e0a78aa8cb56 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
actions: {
logAction(type, e) {
if (type === 'touchend') {
e.preventDefault();
}
console.debug(type, e);
}
}
});
body {
margin: 12px 16px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 12pt;
}
input {
border: 1px solid red;
}
<h1>Welcome to {{appName}}</h1>
<br>
<br>
<p>Foo</p>
<input type="text"
onclick={{action "logAction" "click"}}
onmousedown={{action "logAction" "mousedown"}}
onmouseup={{action "logAction" "mouseup"}}
ontouchstart={{action "logAction" "touchstart"}}
ontouchend={{action "logAction" "touchend"}}
onfocus={{action "logAction" "focus"}} >
<p>Foo</p>
<br>
<br>
{
"version": "0.11.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.10.2",
"ember-data": "2.11.0",
"ember-template-compiler": "2.10.2",
"ember-testing": "2.10.2"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment