From 90f612cb44a024f21f767f90b1e3031b7f3d3af6 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Thu, 16 Sep 2010 14:40:50 -0400 Subject: [PATCH] fix sampledata URL needs to be relative, not absolute in order for in tree development --- install/static/ipa.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/static/ipa.js b/install/static/ipa.js index 08cb184ea..8110f3bfa 100644 --- a/install/static/ipa.js +++ b/install/static/ipa.js @@ -21,7 +21,7 @@ /* IPA JSON-RPC helper */ var IPA_DEFAULT_JSON_URL = '/ipa/json'; -var IPA_SAMPLEDATA_URL = '/ipa/ui/sampledata'; +var IPA_SAMPLEDATA_URL = 'sampledata'; var ipa_use_sampledata = false;