Advertisement
framp

Kunerango <3

May 15th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function framp(limit){
  2.   if (limit!==0){
  3.     $.get('/it/teachings/518cb5be849c82c5e100016a/follow', function(){
  4.       $.get('/it/teachings/518cb5be849c82c5e100016a/unfollow', function(){
  5.         framp(limit-1);
  6.       });
  7.     });
  8.   }else{
  9.     $(".notification.not_visited").each(function(){
  10.       $.get('/notifications/' + $(this).attr("rel") + '/set_visited', function(){
  11.         NotificationManager.DecreaseNotificationCounter();
  12.       });
  13.     })
  14.   }
  15. })(50);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement