##// END OF EJS Templates
Do not parse links to posts that do not exists in the time of posting.
Do not parse links to posts that do not exists in the time of posting.

File last commit:

r291:3b113b42 default
r312:c4a9a992 default
Show More
main.js
13 lines | 286 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
neko259
Fixed image preview script which was accidentally disabled during testing.
r270 addImgPreview();
neko259
Removed reply popups as too buggy for using as they are now.
r272
// TODO Rewrite popups module and reenable it
//addPopups();
neko259
Added replies mapping to the server side instead of JS.
r291
rt@lightning
add mark panel
r228 addMarkPanel();
});