15 lines
475 B
JavaScript
15 lines
475 B
JavaScript
$(document).ready(function()
|
|
{
|
|
$('#files').change(function(){$('#avatarForm').submit();});
|
|
|
|
$.setAjaxForm('#avatarForm', function(response)
|
|
{
|
|
if(response.result == 'success')
|
|
{
|
|
$('.btn-avatar').popover({trigger:'manual', content:response.message, placement:'right'}).popover('show');
|
|
$('.btn-avatar').next('.popover').addClass('popover-success');
|
|
window.location.replace(response.locate);
|
|
}
|
|
});
|
|
});
|