Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. if (this.globalCache != null) {
  2.  
  3. var cachedScore = this.globalCache["currentScore"];
  4.  
  5. if (cachedScore != null) {
  6. trace("Initializing score from global cache");
  7. // Can't assign directly to score because of type issues.
  8. //We restore just the key fields that often aren't transmitted in a heartbeat from controller like AllSport
  9. score.homeTeamScore = cachedScore.homeTeamScore;
  10. score.guestTeamScore = cachedScore.guestTeamScore;
  11. score.period = cachedScore.period;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement