%PDF- %PDF-
| Direktori : /home/bitrix/www/local/templates/p4_new/components/bitrix/menu/p.profile/ |
| Current File : //home/bitrix/www/local/templates/p4_new/components/bitrix/menu/p.profile/script.js |
BX.ready(function(){
$('#image-cropper').cropit({ imageBackground: true, width:400, height:400 });
$('#select-image-btn').click(function() {
$('.cropit-image-input').click();
});
$('form[name="lk_profile"]').find('select').chosen({disable_search_threshold: 100, width: "100%"});
$('#save-image-btn').click(function() { // Сохранение аватара
BX.ajax.post(
'/local/components/p4/p.ajax.post_avatar/ajax.php',
{
'avatar': $('#image-cropper').cropit('export', { type: 'image/jpeg', quality: .9, originalSize: false } ),
'sessid': $('#sessid').attr('value')
},
function(result){
console.dir(result);
// закрываем окно
$('#loadavatar').modal('hide');
$('.avatar > .vignette').css('background','none');
$('.avatar > .vignette').css('border','none');
// заменяем картинку
$('.avatar > .vignette').html(
'<img src="'+$('#image-cropper').cropit('export',{type:'image/jpeg',quality:.9,originalSize:false})+'" width="120" height="120" />'
);
}
);
});
});