Browse Source

Use AJAX to fetch posts that aren't on the current page.

pull/40/head
Michael Save 12 years ago
parent
commit
50624ba5ce
  1. 53
      js/post-hover.js

53
js/post-hover.js

@ -19,31 +19,52 @@ $(document).ready(function(){
id = id[1]; id = id[1];
} }
var post = $('div.post#reply_' + id); var post = false;
if(post.length == 0)
return;
$(this).hover(function(e) { $(this).hover(function(e) {
if($(window).scrollTop() <= post.offset().top + post.height()) { var start_hover = function(link) {
// post is in view if(post.is(':visible') && $(window).scrollTop() <= post.offset().top + post.height()) {
post.attr('style', 'border-style: none dashed dashed none; background: ' + post.css('border-right-color')); // post is in view
post.attr('style', 'border-style: none dashed dashed none; background: ' + post.css('border-right-color'));
} else {
post.clone()
.attr('id', 'post-hover-' + id)
.addClass('post-hover')
.css('position', 'absolute')
.css('border-style', 'solid')
.css('box-shadow', '1px 1px 1px #999')
.css('display', 'block')
.insertAfter($(link).parent());
$(link).trigger('mousemove');
}
};
post = $('div.post#reply_' + id);
if(post.length > 0) {
start_hover(this);
} else { } else {
post.clone() var link = this;
.attr('id', 'post-hover-' + id) $.ajax({
.addClass('post-hover') url: $(this).attr('href'),
.css('position', 'absolute') context: document.body,
.css('border-style', 'solid') success: function(data) {
.css('box-shadow', '1px 1px 1px #999') post = $('div.post:first').prepend($(data).find('div.post#reply_' + id).css('display', 'none').addClass('hidden')).find('div.post#reply_' + id);
.insertAfter($(this).parent()); start_hover(link, post);
$(this).trigger('mousemove'); }
});
} }
}, function() { }, function() {
if(!post)
return;
post.attr('style', ''); post.attr('style', '');
if(post.hasClass('hidden'))
post.css('display', 'none');
$('.post-hover').remove(); $('.post-hover').remove();
}).mousemove(function(e) { }).mousemove(function(e) {
if(!post)
return;
var top = e.pageY - post.height() - 15; var top = e.pageY - post.height() - 15;
$('#post-hover-' + id) $('#post-hover-' + id)
.css('left', $(this).width() + e.pageX) .css('left', e.pageX)
.css('top', top > $(window).scrollTop() ? top : $(window).scrollTop()); .css('top', top > $(window).scrollTop() ? top : $(window).scrollTop());
}); });
}); });

Loading…
Cancel
Save