Skip to content

Instantly share code, notes, and snippets.

@averydev
Last active November 3, 2017 15:26
Show Gist options
  • Save averydev/fb52fe588830908c7b12a0a396574434 to your computer and use it in GitHub Desktop.
Save averydev/fb52fe588830908c7b12a0a396574434 to your computer and use it in GitHub Desktop.
Listener test
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
on:false,
simpleOn:false,
actions:{
click(){
console.log("Click!");
},
toggle(){
console.log('Toggle');
this.toggleProperty("on");
},
toggleSimple(){
console.log("Toggle Simple");
this.toggleProperty("simpleOn");
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
Inputs with actions on events,such as "onClick" will not destroy their related listeners in Chrome. <br><br>
Using the plain (action 'myAction') form with no event will destroy the listeners correctly.<br><br>
<button onClick={{action "toggle"}}>Toggle "On Click" Button: {{if on "OFF""ON"}}</button>
<br><br>
<button onClick={{action "toggleSimple"}}>Toggle "Simple" Button: {{if on "OFF""ON"}}</button>
{{#if on}}
<br>
<button onClick={{action "click"}}>Button With "onClick" Action</button>
{{/if}}
{{#if simpleOn}}
<br>
<button {{action "click"}}>Button w/ simple action</button>
{{/if}}
<br><br>
{{outlet}}
<br>
<br>
{
"version": "0.12.1",
"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.12.0",
"ember-template-compiler": "2.12.0",
"ember-testing": "2.12.0"
},
"addons": {
"ember-data": "2.12.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment