X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=js%2Fpz2.js;h=4d7f784a585173f66d51701c7d3ba7ff75d4e5d5;hb=7182ce9776fbcadef10afe7df72e22997f68be1c;hp=925c2c10b95c6d1f0b2224d14ff40dbe9d78b427;hpb=5b233035bc221e0674fa86503451af6122ff6759;p=pazpar2-moved-to-github.git diff --git a/js/pz2.js b/js/pz2.js index 925c2c1..4d7f784 100644 --- a/js/pz2.js +++ b/js/pz2.js @@ -1,5 +1,5 @@ /* -** $Id: pz2.js,v 1.67 2007-11-13 13:07:28 jakub Exp $ +** $Id: pz2.js,v 1.68 2007-12-20 13:09:40 jakub Exp $ ** pz2.js - pazpar2's javascript client library. */ @@ -466,23 +466,25 @@ pz2.prototype = } ); }, - record: function(id, offset, params) + record: function(id, offset, pass_params) { // we may call record with no previous search if in proxy mode if( !this.searchStatusOK && this.useSessions) throw new Error( 'Pz2.js: record command has to be preceded with a search command.' - ); - if ( params == undefined ) - params = {}; + ); + var params = {}; + if ( pass_params != undefined ) + params = pass_params; + var callback; if ( params.callback != undefined ) { callback = params.callback; } else { callback = this.recordCallback; } - // what is that? + var handle; if ( params['handle'] == undefined ) handle = {}; else