Skip to content
Snippets Groups Projects
Commit d8275fad authored by renater.salaun's avatar renater.salaun
Browse files

In tab 2, allow to select the label to check the corresponding input

git-svn-id: https://svn.geant.net/GEANT/edugain_testidp_account_manager/trunk@34 047e039d-479c-447e-8a29-aa6bf4a09bab
parent b53accc8
No related branches found
No related tags found
No related merge requests found
......@@ -40,3 +40,11 @@ administrator to add ContactPerson information to the SAML metadata.
</fieldset>
<script type="text/javascript">
$(function() {
$('label[for="email_address"]').on('click', function() {
var input = $(this).prev();
input.val([input.attr('value')]);
});
});
</script>
\ No newline at end of file
......@@ -13,7 +13,7 @@ jQuery(document).ready(function($){
}
}
});
$( ".show_account_details" ).click(function(e) {
$( ".show_account_details" ).on('click', function(e) {
var id = $(this).attr('id').substr(5);
$("#" + id).dialog( "open" );
e.stopPropagation();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment