You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
811 B
24 lines
811 B
/*
|
|
DESTOON Copyright (C)2008-2099 www.destoon.com
|
|
This is NOT a freeware,Use is subject to license.txt
|
|
*/
|
|
function show_comment() {
|
|
if($('#comment_main').html().toLowerCase().indexOf('<div>')!=-1) $('#comment_main').html('<if'+'rame src="'+DTPath+'api/comment.php?mid='+module_id+'&itemid='+item_id+'" name="destoon_comment" id="des'+'toon_comment" style="width:100%;height:330px;" scrolling="no" frameborder="0"></if'+'rame>');
|
|
}
|
|
$(function(){
|
|
var cmh2 = $(window).height();
|
|
var cmh1 = $('#comment_count').offset().top;
|
|
if(cmh1 < cmh2) {
|
|
show_comment();
|
|
} else {
|
|
$(window).bind("scroll.comment", function() {
|
|
if($(document).scrollTop() + cmh2 >= cmh1) {
|
|
show_comment();
|
|
$(window).unbind("scroll.comment");
|
|
}
|
|
});
|
|
}
|
|
$('#comment_div').mouseover(function() {
|
|
show_comment();
|
|
});
|
|
});
|