diff options
author | Pushkar Joshi | 2012-06-13 10:56:14 -0700 |
---|---|---|
committer | Pushkar Joshi | 2012-06-13 10:56:14 -0700 |
commit | 03f48f8bdd18462a111032ea54fd21dabe9568b2 (patch) | |
tree | 1087824ad17fcffae4f566551b71b78dd51d9a61 /js/ninja.reel | |
parent | 250d84a79d9f72c6a98cbbecfe4e21f2c0d53a19 (diff) | |
parent | 5a7774f6769a7a682e21bafe0e57007668f16153 (diff) | |
download | ninja-03f48f8bdd18462a111032ea54fd21dabe9568b2.tar.gz |
Merge branch 'master' into brushtool
Diffstat (limited to 'js/ninja.reel')
-rwxr-xr-x | js/ninja.reel/ninja.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/js/ninja.reel/ninja.js b/js/ninja.reel/ninja.js index b57aecd2..2d43af7a 100755 --- a/js/ninja.reel/ninja.js +++ b/js/ninja.reel/ninja.js | |||
@@ -169,6 +169,10 @@ exports.Ninja = Montage.create(Component, { | |||
169 | this.setupGlobalHelpers(); | 169 | this.setupGlobalHelpers(); |
170 | 170 | ||
171 | window.addEventListener("resize", this, false); | 171 | window.addEventListener("resize", this, false); |
172 | //Prompting the user to make sure data was saved before closing Ninja | ||
173 | window.onbeforeunload = function () { | ||
174 | return 'Are you sure you want to close Ninja? Any unsaved data will be lost.'; | ||
175 | }; | ||
172 | 176 | ||
173 | this.eventManager.addEventListener("selectTool", this, false); | 177 | this.eventManager.addEventListener("selectTool", this, false); |
174 | this.eventManager.addEventListener("selectSubTool", this, false); | 178 | this.eventManager.addEventListener("selectSubTool", this, false); |