##// END OF EJS Templates
Setting focus to text area after reply.
Setting focus to text area after reply.

File last commit:

r65:805a710c default
r107:6af33f1b default
Show More
main.js
13 lines | 330 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,
neko259
Changed fancybox skin a bit.
r65 padding: 7,
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
xs
r54 })