From dccb386d57090869acbebe92c8da173fef770869 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Thu, 7 Oct 2010 15:31:27 -0400 Subject: record limit --- install/static/ipa.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'install/static/ipa.js') diff --git a/install/static/ipa.js b/install/static/ipa.js index 74fde929..b436ba9f 100644 --- a/install/static/ipa.js +++ b/install/static/ipa.js @@ -24,6 +24,7 @@ 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', @@ -137,6 +138,7 @@ 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