From df97bce34904e2b135a4b98d5cd5d59c2bb6b9ac Mon Sep 17 00:00:00 2001 From: Adam Young Date: Tue, 19 Oct 2010 16:54:46 -0400 Subject: Remove size limits. Now use the system wide settings instead of hardcoded size limits. --- install/static/ipa.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'install/static/ipa.js') diff --git a/install/static/ipa.js b/install/static/ipa.js index b436ba9fc..74fde9299 100644 --- a/install/static/ipa.js +++ b/install/static/ipa.js @@ -24,7 +24,6 @@ var IPA_DEFAULT_JSON_URL = '/ipa/json'; var ipa_json_url; var ipa_use_static_files; -var ipa_record_limit=100; var ipa_ajax_options = { type: 'POST', @@ -138,7 +137,6 @@ function ipa_cmd(name, args, options, win_callback, fail_callback, objname) if (ipa_use_static_files) url += '/' + method_name + '.json'; - options.sizelimit=ipa_record_limit; var data = { method: method_name, params: [args, options], -- cgit