From dc5e14433c57419251fd54aacf104ec5c231f17a Mon Sep 17 00:00:00 2001 From: erickson Date: Thu, 27 Jul 2006 22:23:31 +0000 Subject: [PATCH] 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 --- Open-ILS/web/opac/common/js/RemoteRequest.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; + } } } -- 2.11.0