You need to replace
FB.Event.subscribe('auth.authResponseChange', function(response){
with
FB.Event.subscribe('auth.statusChange', function(response){
As auth.authStatusChange event trigger on status change whether already logged in or login by giving credentials.
thanks