diff options
author | Adam Young <ayoung@redhat.com> | 2011-01-14 12:16:25 -0500 |
---|---|---|
committer | Endi Sukma Dewata <edewata@people01.fedoraproject.org> | 2011-01-15 03:35:42 +0000 |
commit | d49cf9ee614f1d42ae06468e43e4214ad2fca9df (patch) | |
tree | 04adf3c4a97a533bab04dd3eee8ec8fd82f14909 /install/static/ipa.js | |
parent | bd965c92d829f9d88f4e29f37890c9beffbd716d (diff) | |
download | freeipa.git-d49cf9ee614f1d42ae06468e43e4214ad2fca9df.tar.gz freeipa.git-d49cf9ee614f1d42ae06468e43e4214ad2fca9df.tar.xz freeipa.git-d49cf9ee614f1d42ae06468e43e4214ad2fca9df.zip |
lint clean added a config file for running jsl. run 'jsl -conf jsl.conf' and see that there are no error messages.
Diffstat (limited to 'install/static/ipa.js')
-rw-r--r-- | install/static/ipa.js | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/install/static/ipa.js b/install/static/ipa.js index ed43d550..6600328f 100644 --- a/install/static/ipa.js +++ b/install/static/ipa.js @@ -1,5 +1,7 @@ /* Authors: * Pavel Zuna <pzuna@redhat.com> + * Adam Young <ayoung@redhat.com> + * Endi Dewata <edewata@redhat.com> * * Copyright (C) 2010 Red Hat * see file 'COPYING' for use and warranty information @@ -201,7 +203,8 @@ IPA.command = function (spec) { }; return that; -} +}; + IPA.batch_command = function (spec) { spec = spec || {}; @@ -270,7 +273,7 @@ IPA.batch_command = function (spec) { }; return that; -} +}; /* call an IPA command over JSON-RPC * arguments: @@ -434,7 +437,7 @@ IPA.cmd = function (name, args, options, win_callback, fail_callback, objname, c $.ajax(request); return (id); -} +}; /* helper function used to retrieve information about an attribute */ @@ -457,7 +460,7 @@ IPA.get_param_info = function(obj_name, attr) } return (null); -} +}; /* helper function used to retrieve attr name with members of type `member` */ IPA.get_member_attribute = function (obj_name, member) @@ -476,10 +479,11 @@ IPA.get_member_attribute = function (obj_name, member) } } return null; + } IPA.create_network_spinner = function(){ return $('<span />',{ 'class':'network-activity-indicator', html: '<img src="spinner_small.gif" />'}); -} +}; |