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/associate.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/associate.js')
-rw-r--r-- | install/static/associate.js | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/install/static/associate.js b/install/static/associate.js index bcf81a13..9fc90723 100644 --- a/install/static/associate.js +++ b/install/static/associate.js @@ -1,3 +1,5 @@ +/*jsl:import ipa.js */ + /* Authors: * Adam Young <ayoung@redhat.com> * @@ -43,7 +45,8 @@ IPA.associator = function (spec) { }; return that; -} +}; + /** *This associator is built for the case where each association requires a separate rpc @@ -202,7 +205,8 @@ IPA.association_adder_dialog = function (spec) { that.association_adder_dialog_setup = that.setup; return that; -} +}; + /** * This dialog is used for removing associations between two entities. @@ -240,7 +244,8 @@ IPA.association_deleter_dialog = function (spec) { }; return that; -} +}; + IPA.association_config = function (spec) { @@ -254,7 +259,8 @@ IPA.association_config = function (spec) { that.remove_method = spec.remove_method; return that; -} +}; + IPA.association_table_widget = function (spec) { @@ -554,7 +560,8 @@ IPA.association_table_widget = function (spec) { that.association_table_widget_init = that.init; return that; -} +}; + IPA.association_facet = function (spec) { @@ -915,7 +922,8 @@ IPA.association_facet = function (spec) { that.association_facet_init = that.init; return that; -} +}; + IPA.deleter_dialog_setup = function () { @@ -933,4 +941,4 @@ IPA.deleter_dialog_setup = function () { $('<p/>', { 'text': IPA.messages.search.delete_confirm }).appendTo(that.dialog); -} +}; |