diff --git a/airtime_mvc/public/js/airtime/preferences/preferences.js b/airtime_mvc/public/js/airtime/preferences/preferences.js index 8a9b48c07..3170d906d 100644 --- a/airtime_mvc/public/js/airtime/preferences/preferences.js +++ b/airtime_mvc/public/js/airtime/preferences/preferences.js @@ -54,13 +54,17 @@ $(document).ready(function() { } }); - $("#Publicise").live('click', function(){ + var promote = $("#Publicise"); + promote.live('click', function(){ if($(this).is(':checked')){ $("#public-info").show(); }else{ $("#public-info").hide(); } }); + if( promote.is(":checked")){ + $("#public-info").show(); + } showErrorSections();