a function like this:
this.alert = function(){
var promis = FBInstant.context.getPlayersAsync();
promis.then(function(players) {alert(34256);}).catch(function() {alert(3452);});
}
but no response why?
Develop games in your browser. Powerful, performant & highly capable.
It looks like you define a function but never call it. So the code will never run.