Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 14th, 2012  |  syntax: JavaScript  |  size: 0.39 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.             function ranking(){
  2.                 ig.game.leaderboard.post( { score: ig.game.puntos, name: $('#Player').val() }, function( response ) {
  3.                     ig.game.leaderboard.fetch( { limit: 13, showPersonal: false }, function( results ){
  4.                         console.log(results);
  5.                         } );
  6.                     });      
  7.                 });
  8.             }