Fixed JSON request queueing issue.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@3299 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan
2011-02-15 11:17:44 +00:00
parent f4ee181a1b
commit efa583aed0

View File

@@ -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 )