CC-2425:Tweak phone home
- privacy check box is uncheck by defalut - 'Yes' button is disabled on popup form by default - custom error msg is added for privacy checkbox on preference form - promote form is hidden by default
This commit is contained in:
parent
1243c60442
commit
c5ec6b5a53
6 changed files with 52 additions and 14 deletions
|
@ -53,6 +53,14 @@ $(document).ready(function() {
|
|||
pub.removeAttr("disabled");
|
||||
}
|
||||
});
|
||||
|
||||
$("#Publicise").live('click', function(){
|
||||
if($(this).is(':checked')){
|
||||
$("#public-info").show();
|
||||
}else{
|
||||
$("#public-info").hide();
|
||||
}
|
||||
});
|
||||
|
||||
showErrorSections();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue