play68.js 626 B

1234567891011121314151617181920212223
  1. function play68_init() {
  2. // updateShare(0);
  3. }
  4. function play68_submitScore(shareText) {
  5. // updateShareScore(shareText);
  6. Play68.shareFriend();
  7. //setTimeout( function() { Play68.shareFriend(); }, 1000 )
  8. }
  9. function updateShare(shareText) {
  10. var descContent = "[六一]123算术题,是学霸就撑过30秒!别放弃做一个高智商的人!";
  11. if(shareText){
  12. shareTitle = shareText;
  13. }else{
  14. shareTitle = '[六一]123算术题,是学霸就撑过30秒!';
  15. }
  16. console.log(shareTitle);
  17. appid = '';
  18. // Play68.setShareInfo(shareTitle,descContent);
  19. }
  20. function updateShareScore(shareText) {
  21. updateShare(shareText);
  22. }