Last active
February 20, 2019 06:00
-
-
Save theseyi/59df3032c5daf321fe2a7c1ca23ae1a7 to your computer and use it in GitHub Desktop.
auto-bind
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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