{style}
{literal}
.ow_about_me_widget {
padding: 5px 4px 10px;
overflow: hidden;
}
{/literal}
{/style}
{script}
{literal}
$(document).ready(function(){
$('#edit_form_button').on('click', function(){
$('#edit-about-me').show();
$('#static-about-me').hide();
});
$('form[name="about_me_form"]').submit(function(){
var newVal = $('#about_me_widget_input').val();
//$('#about_me_widget_input').text(newVal);
newVal = newVal.replace(/\n/g,"
");
$("#static-about-me p").html(newVal).show();
$("#static-about-me input").hide();
$('#edit-about-me').hide();
$('#static-about-me').show();
});
});
{/literal}
{/script}