summaryrefslogtreecommitdiffstats
path: root/install/static/ipa.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/static/ipa.js')
-rw-r--r--install/static/ipa.js14
1 files changed, 9 insertions, 5 deletions
diff --git a/install/static/ipa.js b/install/static/ipa.js
index ed43d550a..6600328f6 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" />'});
-}
+};