##// END OF EJS Templates
Added replies manytomany field to the post to get its replies more efficiently.
Added replies manytomany field to the post to get its replies more efficiently.

File last commit:

r125:449be9e6 default
r169:4857f106 default
Show More
main.js
16 lines | 353 B | application/javascript | JavascriptLexer
neko259
xs
r54 $( document ).ready(function() {
$("a[href='#top']").click(function() {
$("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});
neko259
Added js popup for image viewing.
r63
$(".fancy").fancybox({
closeBtn: false,
neko259
Decreased popup image border size. Speed up fade effect of the popup.
r64 closeClick: true,
Pavel Ryapolov
Removed padding from images preview.
r115 padding: 0,
neko259
Decreased popup image border size. Speed up fade effect of the popup.
r64 openEffect: 'none',
closeEffect: 'none'
neko259
Added js popup for image viewing.
r63 });
neko259
Added refmaps for the threads list.
r125
addRefLinkMap();
Pavel Ryapolov
Removed padding from images preview.
r115 })