diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-25 19:08:04 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-25 19:08:04 +0000 |
commit | 57f8b5c42ee18e07b20417e9884d57b1fd90363f (patch) | |
tree | f65079d74d768a91a4f2a9b415a145f5f7bde119 /views/installation/forms | |
parent | 4e5d14ee2638dd6c9b22baf67d880787fa6085e4 (diff) | |
download | elgg-57f8b5c42ee18e07b20417e9884d57b1fd90363f.tar.gz elgg-57f8b5c42ee18e07b20417e9884d57b1fd90363f.tar.bz2 |
Cleaned up some js in the installer
git-svn-id: http://code.elgg.org/elgg/trunk@8468 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/installation/forms')
-rw-r--r-- | views/installation/forms/install/template.php | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/views/installation/forms/install/template.php b/views/installation/forms/install/template.php index 5e44d928e..7e7a668d3 100644 --- a/views/installation/forms/install/template.php +++ b/views/installation/forms/install/template.php @@ -30,14 +30,17 @@ $form_body .= elgg_view('input/submit', $submit_params); echo $form_body; ?> -<?php //@todo JS 1.8: no ?> + <script type="text/javascript"> - var was_submitted = false; - function elggCheckFormSubmission() { - if (was_submitted == false) { - was_submitted = true; + //prevent double-submission + $(function() { + $('form').submit(function() { + if (this.data('submitted')) { + return false; + } + + this.data('submitted', true); return true; } - return false; - } + }); </script> |