mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-24 07:30:10 +01:00
custom event for new posts, so auto-reload.js etc will work with forced-anon.js and post-hover.js
This commit is contained in:
parent
8208d7151b
commit
21a1152ebe
@ -27,12 +27,13 @@ $(document).ready(function(){
|
||||
var id = $(this).attr('id');
|
||||
if($('#' + id).length == 0) {
|
||||
$(this).insertAfter($('div.post:last').next()).after('<br class="clear">');
|
||||
$(document).trigger('new_post', this);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
poll_interval = setTimeout(poll, 5000);
|
||||
poll_interval = setTimeout(poll, 500);
|
||||
};
|
||||
|
||||
$(window).scroll(function() {
|
||||
|
@ -11,9 +11,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
$(document).ready(function(){
|
||||
enable_fa = function() {
|
||||
$('p.intro label').each(function() {
|
||||
$(document).ready(function() {
|
||||
var force_anon = function() {
|
||||
if($(this).children('a.capcode').length == 0) {
|
||||
var id = $(this).parent().children('a.post_no:eq(1)').text();
|
||||
|
||||
@ -28,7 +27,10 @@ $(document).ready(function(){
|
||||
if(p.children('span.trip').length != 0)
|
||||
p.children('span.trip').text('');
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
var enable_fa = function() {
|
||||
$('p.intro label').each(force_anon);
|
||||
};
|
||||
|
||||
var disable_fa = function() {
|
||||
@ -75,5 +77,9 @@ $(document).ready(function(){
|
||||
if(forced_anon)
|
||||
enable_fa();
|
||||
|
||||
$(document).bind('new_post', function(e, post) {
|
||||
if(forced_anon)
|
||||
$(post).find('p.intro label').each(force_anon);
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -13,17 +13,19 @@
|
||||
|
||||
$(document).ready(function(){
|
||||
var dont_fetch_again = [];
|
||||
$('p.body a:not([rel="nofollow"])').each(function() {
|
||||
var init_hover = function() {
|
||||
var link = $(this);
|
||||
|
||||
var id;
|
||||
|
||||
if(id = $(this).text().match(/^>>(\d+)$/)) {
|
||||
if(id = $(link).text().match(/^>>(\d+)$/)) {
|
||||
id = id[1];
|
||||
}
|
||||
|
||||
var post = false;
|
||||
var hovering = false;
|
||||
var hovered_at;
|
||||
$(this).hover(function(e) {
|
||||
$(link).hover(function(e) {
|
||||
hovering = true;
|
||||
hovered_at = {'x': e.pageX, 'y': e.pageY};
|
||||
|
||||
@ -52,7 +54,7 @@ $(document).ready(function(){
|
||||
start_hover(this);
|
||||
} else {
|
||||
var link = this;
|
||||
var url = $(this).attr('href').replace(/#.*$/, '');
|
||||
var url = $(link).attr('href').replace(/#.*$/, '');
|
||||
|
||||
if($.inArray(url, dont_fetch_again) != -1) {
|
||||
return;
|
||||
@ -64,13 +66,10 @@ $(document).ready(function(){
|
||||
context: document.body,
|
||||
success: function(data) {
|
||||
$(data).find('div.post.reply').each(function() {
|
||||
if($('#' + $(this).attr('id')).length == 0)
|
||||
$('div.post:first').prepend($(this).css('display', 'none').addClass('hidden'));
|
||||
if($('#' + $(link).attr('id')).length == 0)
|
||||
$('div.post:first').prepend($(link).css('display', 'none').addClass('hidden'));
|
||||
});
|
||||
|
||||
if(typeof window.enable_fa == 'function' && localStorage['forcedanon'])
|
||||
enable_fa();
|
||||
|
||||
post = $('div.post#reply_' + id);
|
||||
if(hovering && post.length > 0)
|
||||
start_hover(link);
|
||||
@ -105,6 +104,13 @@ $(document).ready(function(){
|
||||
|
||||
hover.css('left', (e.pageX ? e.pageX : hovered_at['x'])).css('top', top);
|
||||
});
|
||||
};
|
||||
|
||||
$('p.body a:not([rel="nofollow"])').each(init_hover);
|
||||
|
||||
// allow to work with auto-reload.js, etc.
|
||||
$(document).bind('new_post', function(e, post) {
|
||||
$(post).find('p.body a:not([rel="nofollow"])').each(init_hover);
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user