Skip to content

Instantly share code, notes, and snippets.

@oxchronxo
Created August 9, 2010 21:30
Show Gist options
  • Save oxchronxo/516165 to your computer and use it in GitHub Desktop.
Save oxchronxo/516165 to your computer and use it in GitHub Desktop.
if (KONtx.system.FullscreenView.prototype._onUnselectView === KONtx.system.WindowedView.prototype._onUnselectView) {
KONtx.system.FullscreenView.implement({
_onHideView: function (event) {
this.visible = false;
this.backParams = {};
},
_onUnselectView: function (event) {
this.parent(event);
if (this.fire("onHideView")) {
this.hideView();
}
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment