yulii
Пользователь
Код:
<!-- <script type="text/javascript">
ajax.openedPosts = {};
ajax.view_post = function(post_id, src) {
if (!ajax.openedPosts[post_id]) {
ajax.exec({
action : 'view_post',
post_id : post_id
});
}
else {
var $post = $('#post_'+post_id);
if ($post.is(':visible')) {
$post.hide();
} else {
$post.css({ display: '' });
}
}
$(src).toggleClass('unfolded2');
};
ajax.callback.view_post = function(data) {
var post_id = data.post_id;
var $tor = $('#tor_'+post_id);
window.location.href='#tor_'+post_id;
$('#post-row tr')
.clone()
.attr({ id: 'post_'+post_id })
.find('div.post_body').html(data.post_html).end()
.find('a.tLink').attr({ href: $('a.tLink', $tor).attr('href') }).end()
.find('a.dLink').attr({ href: $('a.si-dl', $tor).attr('href') }).end()
.insertAfter($tor)
;
initPostBBCode('#post_'+post_id);
var maxH = screen.height - 290;
var maxW = screen.width - 60;
var $post = $('div.post_similar_wrap', $('#post_'+post_id));
var $links = $('div.post_links', $('#post_'+post_id));
$post.css({ maxWidth: maxW, maxHeight: maxH });
$links.css({ maxWidth: maxW });
if ($.browser.msie) {
if ($post.height() > maxH) { $post.height(maxH); }
if ($post.width() > maxW) { $post.width(maxW); $links.width(maxW); }
}
ajax.openedPosts[post_id] = true;
};
</script> -->
его закоментировал в
viewtopic_attach.tpl
Последнее редактирование: