Ваша корзина пуста!
Мы переезжаем!!! Наш новый адрес Варшавская ул. дом 10
- 29 июля 2014 в 15:15:58
- Просмотров: 1151
Салон "Европейский Дом Кухонь" с 1 августа 2014 года переезжает на новый адрес : Варшавская ул. 10
На время переезда телефон салона (812) 974 -51-21 , может быть недоступен, просим использовать добавочный номер (812) 926-18-00
C радостью, ответим на все ваши вопросы.
С 1 августа по 1 сентября салон будет работать в "закрытом" режиме, приносим извинения за временные неудобства.
Подождите пожалуйста!
');
urll = this.href+'#tab-review';
location = urll;
$('.attention').remove();
return false;
});
}
function remove_success()
{
$('.success, .warning').fadeIn().animate({
opacity: 0.0
}, 5000, function() {
$('.success, .warning').remove();
});
}
// from config и get
function comment_write(event)
{
$('.success, .warning').remove();
if (typeof(event.data.sorting) == "undefined")
{
sorting = 'none';
} else {
sorting = event.data.sorting;
}
if (typeof(event.data.page) == "undefined")
{
page = '1';
} else {
page = event.data.page;
}
if (typeof(this.id) == "undefined") {
myid = '0';
} else {
myid = this.id.replace('button-comment-','');
}
$.ajax(
{
type: 'POST',
url: 'index.php?route=record/record/write&record_id=144&parent=' + myid + '&page=' + page,
dataType: 'json',
data: 'name=' + encodeURIComponent($('#comment_work_'+myid).find('input[name=\'name\']').val()) + '&text=' + encodeURIComponent($('#comment_work_'+myid).find('textarea[name=\'text\']').val()) + '&rating=' + encodeURIComponent($('#comment_work_'+myid).find('input[name=\'rating\']:checked').val() ? $('#comment_work_'+myid).find('input[name=\'rating\']:checked').val() : '') + '&captcha=' + encodeURIComponent($('#comment_work_'+myid).find('input[name=\'captcha\']').val()),
beforeSend: function()
{
$('.success, .warning, .attention').remove();
$('.button-comment').hide();
$('#comment_work_'+myid).hide();
$('#comment_work_'+myid).before('
Подождите пожалуйста!
');
},
success: function(data)
{
$('.button-comment').attr('disabled', false);
$('.success, .attention').remove();
if (data.error)
{
$('#comment_work_'+myid).show();
if ( myid == '0') $('#comment-title').after('' + data.error + '
');
else
$('#comment_work_'+ myid).prepend('' + data.error + '
');
}
if (data.success)
{
$.when($('#comment').comments(sorting, page )).done(function(){
if ( myid == '0')
{
$('#comment-title').after('' + data.success + '
');
}
else
{
$('#comment_work_' + myid).append(''+ data.success +'
');
}
remove_success();
});
$('.comment_count').html(data.comment_count);
$('.wysibb-text-editor').html('');
$('input[name=\'name\']').val(data.login);
$('textarea[name=\'text\']').val('');
$('input[name=\'rating\']:checked').attr('checked', '');
$('input[name=\'captcha\']').val('');
}
$('.button-comment').show();
}
});
}
$(document).ready(function(){
$('.button-comment').unbind();
$('.button-comment').bind('click',{ }, comment_write);
$('#comment_id_reply_0').click();
//captcha_fun();
});