From a4fe0038786038af248c665a1cefc13f6bfd074a Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 26 Apr 2010 06:27:33 +0100 Subject: [PATCH] we want these to be cached --- lib/jquery.autocomplete.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jquery.autocomplete.js b/lib/jquery.autocomplete.js index d9a82768..4c3e9963 100644 --- a/lib/jquery.autocomplete.js +++ b/lib/jquery.autocomplete.js @@ -352,7 +352,7 @@ $.Autocompleter = function(input, options) { } else if( (typeof options.url == "string") && (options.url.length > 0) ){ var extraParams = { - timestamp: +new Date() + timestamp: 0 //+new Date() }; $.each(options.extraParams, function(key, param) { extraParams[key] = typeof param == "function" ? param() : param;