2014-09-19 19:01:07 -03:00
|
|
|
$(function(){
|
|
|
|
|
|
|
|
$('#closeModal').html('');
|
|
|
|
$('.profile-card-main').attr('style', '');
|
|
|
|
$('img[src$="img/tornado_avatar.png"]').attr("src","theme_nin/img/tornado_avatar.png");
|
2014-09-21 14:06:48 +02:00
|
|
|
$('.userMenu-search-profiles button').html('').attr('title',polyglot.t('Follow'));
|
2014-09-19 19:01:07 -03:00
|
|
|
$('.mini-profile-actions span').html('');
|
|
|
|
|
|
|
|
$('.post-context').each(function(){
|
|
|
|
$(this).prependTo($(this).parent());
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$( '.userMenu-home.current a' ).on( 'click', function() {
|
|
|
|
$('html, body').animate({scrollTop:0},300);
|
|
|
|
return false
|
|
|
|
});
|
|
|
|
|
|
|
|
$(window).scroll(function(){
|
|
|
|
posScroll = $(document).scrollTop();
|
|
|
|
if(posScroll >= 250)
|
|
|
|
$('.left .post-area-new').slideDown(300);
|
|
|
|
else
|
|
|
|
$('.left .post-area-new').slideUp(150);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|