##// END OF EJS Templates
Fixed validation message. 'text or image must be entered' was shown instead of the read one.
Fixed validation message. 'text or image must be entered' was shown instead of the read one.

File last commit:

r125:449be9e6 default
r151:f572bc5b 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 })