CC-2475:When Promote is checked promote info section has to be
expanded by default - fixed
This commit is contained in:
parent
48537c3c10
commit
8475326d96
1 changed files with 5 additions and 1 deletions
|
@ -54,13 +54,17 @@ $(document).ready(function() {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#Publicise").live('click', function(){
|
var promote = $("#Publicise");
|
||||||
|
promote.live('click', function(){
|
||||||
if($(this).is(':checked')){
|
if($(this).is(':checked')){
|
||||||
$("#public-info").show();
|
$("#public-info").show();
|
||||||
}else{
|
}else{
|
||||||
$("#public-info").hide();
|
$("#public-info").hide();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
if( promote.is(":checked")){
|
||||||
|
$("#public-info").show();
|
||||||
|
}
|
||||||
|
|
||||||
showErrorSections();
|
showErrorSections();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue