Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
don't call bingo for non-site users
Browse files Browse the repository at this point in the history
  • Loading branch information
nsfmc committed Nov 9, 2011
1 parent e85ae50 commit b18ce49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion khan-exercise.js
Expand Up @@ -2252,7 +2252,7 @@ function prepareSite() {
}

// record a bingo if came here from knowledge map after clicking on green button or dashboard link
if(document.referrer.indexOf("move_on") > 0){
if(document.referrer.indexOf("move_on") > 0 && window.gae_bingo){
gae_bingo.bingo("clicked_followup");
}

Expand Down

0 comments on commit b18ce49

Please sign in to comment.