diff options
author | Adam Young <ayoung@redhat.com> | 2011-01-12 19:51:22 -0500 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-01-14 04:03:47 -0500 |
commit | 680148ed036bcef5ecfc0ca1938b9768d8a233ca (patch) | |
tree | 633e36ec231f41fcf03ff42a922829beef8c551c /install/static/test/aci_tests.js | |
parent | 00b3984e5a754b40bd10515ce9629583c78b6c8e (diff) | |
download | freeipa.git-680148ed036bcef5ecfc0ca1938b9768d8a233ca.tar.gz freeipa.git-680148ed036bcef5ecfc0ca1938b9768d8a233ca.tar.xz freeipa.git-680148ed036bcef5ecfc0ca1938b9768d8a233ca.zip |
scoping functions
converting function of the form ipa_<name> to IPA.<name> to remove them from the global namespace.
https://fedorahosted.org/freeipa/ticket/212
Diffstat (limited to 'install/static/test/aci_tests.js')
-rw-r--r-- | install/static/test/aci_tests.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/static/test/aci_tests.js b/install/static/test/aci_tests.js index 9505f1e1..c51b556d 100644 --- a/install/static/test/aci_tests.js +++ b/install/static/test/aci_tests.js @@ -36,7 +36,7 @@ module('aci',{ } ); aci_container = $('<div id="aci"/>').appendTo(document.body); - target_section = ipa_target_section(); + target_section = IPA.target_section(); target_section.create(aci_container); }, teardown: function() { |