From efa583aed0c4e1ef753b177ff4782145e99abafb Mon Sep 17 00:00:00 2001 From: stan Date: Tue, 15 Feb 2011 11:17:44 +0000 Subject: [PATCH] Fixed JSON request queueing issue. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@3299 e3e1d417-86f3-4887-817a-d78f3d33393f --- web/skins/classic/views/js/montage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/skins/classic/views/js/montage.js b/web/skins/classic/views/js/montage.js index adcad0154..61e85ba1b 100644 --- a/web/skins/classic/views/js/montage.js +++ b/web/skins/classic/views/js/montage.js @@ -108,7 +108,7 @@ function Monitor( index, id, connKey ) this.streamCmdReq = new Request.JSON( { url: thisUrl, method: 'post', timeout: AJAX_TIMEOUT, onSuccess: this.getStreamCmdResponse.bind( this ), onTimeout: this.streamCmdQuery.bind( this, true ), link: 'cancel' } ); - requestQueue.addRequest( this.streamCmdReq ); + requestQueue.addRequest( "cmdReq"+this.id, this.streamCmdReq ); } function selectLayout( element )