Advertisement
Guest User

Untitled

a guest
Jan 25th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. golos.api.getActiveVotes(author, permlink, function(err, data){
  2.     if(data)
  3.         if(data.length > 0)
  4.         {
  5.             var s = '';
  6.             data.forEach(function(operation){
  7.                 s = s + "<a href='/@"+operation.voter+"' title='"+operation.percent / 100 +"%'>@"+operation.voter+"</a> ";
  8.             });
  9.             document.getElementById('voters').innerHTML = '<hr><div>Оценили ('+data.length+'): <span class="tt" onclick="spoiler(\'all_votes\'); return false">показать</span> <span id="all_votes" class="terms" style="display: none;"><small>' + s + '</small></span></div>';
  10.         }
  11.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement