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/widget.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/widget.js')
-rw-r--r-- | install/static/widget.js | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/install/static/widget.js b/install/static/widget.js index f26ee2a1..9221e499 100644 --- a/install/static/widget.js +++ b/install/static/widget.js @@ -1,3 +1,4 @@ +/*jsl:import ipa.js */ /* Authors: * Endi Sukma Dewata <edewata@redhat.com> * @@ -167,7 +168,7 @@ IPA.widget = function(spec) { that.widget_reset = that.reset; return that; -} +}; IPA.text_widget = function(spec) { @@ -255,7 +256,7 @@ IPA.text_widget = function(spec) { }; return that; -} +}; IPA.checkbox_widget = function (spec) { @@ -311,7 +312,7 @@ IPA.checkbox_widget = function (spec) { }; return that; -} +}; IPA.radio_widget = function(spec) { @@ -389,7 +390,7 @@ IPA.radio_widget = function(spec) { that.radio_save = that.save; return that; -} +}; IPA.textarea_widget = function (spec) { @@ -448,7 +449,7 @@ IPA.textarea_widget = function (spec) { }; return that; -} +}; IPA.button_widget = function (spec) { @@ -478,8 +479,7 @@ IPA.button_widget = function (spec) { } return that; -} - +}; IPA.column = function (spec) { @@ -513,7 +513,7 @@ IPA.column = function (spec) { } return that; -} +}; IPA.table_widget = function (spec) { @@ -835,7 +835,7 @@ IPA.table_widget = function (spec) { that.table_set_enabled = that.set_enabled; return that; -} +}; /** * This is a base class for dialog boxes. @@ -998,7 +998,7 @@ IPA.dialog = function(spec) { that.dialog_open = that.open; return that; -} +}; /** * This dialog provides an interface for searching and selecting @@ -1254,7 +1254,7 @@ IPA.adder_dialog = function (spec) { that.adder_dialog_setup = that.setup; return that; -} +}; /** * This dialog displays the values to be deleted. @@ -1303,4 +1303,4 @@ IPA.deleter_dialog = function (spec) { }; return that; -} +}; |