Renamed the alert handler to egw_alertHandler

This commit is contained in:
Andreas Stöckel 2010-06-04 08:16:45 +00:00
parent f88e1339c6
commit 7b2aedddb3

View File

@ -24,9 +24,9 @@ function egw_json_request(_menuaction, _parameters)
this.sender = null; this.sender = null;
this.callback = null; this.callback = null;
this.alertHandler = this.alertFunc; this.alertHandler = this.alertFunc;
if (document.alertHandler) if (window.egw_alertHandler)
{ {
this.alertHandler = document.alertHandler; this.alertHandler = window.egw_alertHandler;
} }
} }