diff options
author | Adam Young <ayoung@redhat.com> | 2010-09-16 14:40:50 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-09-17 19:42:40 -0400 |
commit | 90f612cb44a024f21f767f90b1e3031b7f3d3af6 (patch) | |
tree | ccf016237024a00fb7b62f296f46d02c78bffab7 /install | |
parent | 9b64a132e00ec3f213ab5603078efcc7666267fb (diff) | |
download | freeipa-90f612cb44a024f21f767f90b1e3031b7f3d3af6.tar.gz freeipa-90f612cb44a024f21f767f90b1e3031b7f3d3af6.tar.xz freeipa-90f612cb44a024f21f767f90b1e3031b7f3d3af6.zip |
fix sampledata
URL needs to be relative, not absolute in order for in tree development
Diffstat (limited to 'install')
-rw-r--r-- | install/static/ipa.js | 2 |
1 files changed, 1 insertions, 1 deletions
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; |