Skip to content

Instantly share code, notes, and snippets.

@theseyi
Last active February 20, 2019 06:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save theseyi/59df3032c5daf321fe2a7c1ca23ae1a7 to your computer and use it in GitHub Desktop.
Save theseyi/59df3032c5daf321fe2a7c1ca23ae1a7 to your computer and use it in GitHub Desktop.
auto-bind
import { action } from '@ember-decorators/object';
export default class AutoBind {
end = false;
constructor() {
window.addEventListener('beforeunload', this.onDestroy);
}
@action
onDestroy(event) {
this.end = true;
console.log(this.end);
event.preventDefault();
event.returnValue = false;
}
}
import Ember from 'ember';
import AutoBind from 'twiddle/auto-bind';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
init() {
this._super();
const autoBind = new AutoBind();
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "latest",
"ember-template-compiler": "latest",
"ember-testing": "3.4.3"
},
"addons": {
"ember-decorators": "latest"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment