Browse Source

Color IDs on new posts received via AJAX

pull/40/head
8chan 10 years ago
committed by czaks
parent
commit
f8178dcbe4
  1. 12
      js/id_colors.js

12
js/id_colors.js

@ -23,7 +23,7 @@ if (active_page == 'thread' || active_page == 'index') {
return rgb;
}
$(".poster_id").each(function(){
function colorPostId(el) {
var rgb = stringToRGB($(this).text());
$(this).css({
@ -32,6 +32,16 @@ if (active_page == 'thread' || active_page == 'index') {
"border-radius": "8px",
"color": "white"
});
}
$(".poster_id").each(function(k, v){
colorPostId(v);
});
$(document).on('new_post', function(e, post) {
$(post).find('.poster_id').each(function(k, v) {
colorPostId(v);
});
});
});
}

Loading…
Cancel
Save