From: erickson Date: Thu, 27 Jul 2006 22:23:31 +0000 (+0000) Subject: not returning null in opac when event happens unless alertEvent is true X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=dc5e14433c57419251fd54aacf104ec5c231f17a;p=Evergreen.git not returning null in opac when event happens unless alertEvent is true git-svn-id: svn://svn.open-ils.org/ILS/trunk@5143 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/opac/common/js/RemoteRequest.js b/Open-ILS/web/opac/common/js/RemoteRequest.js index dc9da25df3..94b1cf0acd 100644 --- a/Open-ILS/web/opac/common/js/RemoteRequest.js +++ b/Open-ILS/web/opac/common/js/RemoteRequest.js @@ -294,9 +294,10 @@ RemoteRequest.prototype.getResultObject = function() { if(!isXUL()) { if( checkILSEvent(payload) ) { this.event(payload); - if( this.alertEvent ) + if( this.alertEvent ) { alertILSEvent(payload); - return null; + return null; + } } }