ptgamr / cordova-google-play-game

Cordova Plugin For Google Play Game Service
35 stars 64 forks source link

Changed README.md to fix problems with showLeaderboard and signout #25

Open Samleo8 opened 5 years ago

Samleo8 commented 5 years ago

There are 2 misprints in the README.md:

  1. Sign Out

googleplaygame.signout(); should be googleplaygame.signOut();

  1. Show Leaderboards

var data = { leaderboardId: "board1" }; googleplaygame.showLeaderboard(leaderboardId);

should be

var data = { leaderboardId: "board1" }; googleplaygame.showLeaderboard(data);