commit | e6538cdc41d229777d3dd39b424f421fd4cd4791 | [log] [tgz] |
---|---|---|
author | Akron <nils@diewald-online.de> | Mon Jul 16 17:52:33 2018 +0200 |
committer | Akron <nils@diewald-online.de> | Mon Jul 16 17:52:33 2018 +0200 |
tree | d52f234053fb93a9478ed3781385e6f9db908234 | |
parent | 70821bac4013454fbb52afb6cf5d076c6fa0f6cf [diff] [blame] |
Toggle KQ and reopen after page turn Change-Id: Ib2bdd9a3818bf217bca6be2e7ccf8ed4f321c662
diff --git a/dev/js/src/view.js b/dev/js/src/view.js index 4a4dc03..946cdd3 100644 --- a/dev/js/src/view.js +++ b/dev/js/src/view.js
@@ -67,7 +67,9 @@ shown : function () { return this._shown; }, - + + // onClose : function () {}, + /** * Close the view. */ @@ -76,6 +78,8 @@ e.parentNode.removeChild(e); this.panel.delView(this); this._shown = false; + if (this.onClose) + this.onClose(); },