");
});
})
gapi.client.load('oauth2', 'v2', function() {
gapi.client.oauth2.userinfo.get().execute(function(resp) {
$('#email').val(resp.email);
})
});
}
} else if (authResult['error']) {
// There was an error.
// Possible error codes:
// "access_denied" - User denied access to your app
// "immediate_failed" - Could not automatially log in the user
console.log('There was an error: ' + authResult['error']);
}
}
jQuery(function($) {
$( "#gConnect1,#gConnect2,#gConnect3,#gConnect4").click(function() {
$.cookie("fconnect", "true", {
expires: 2,
path: '/',
domain: '.sports.com',
});
});
});
function logincek(id,types)
{
$.getJSON("https://sports.unisda.ac.id/auth/user_cek?callback=?",
{type:types,uid:id},
function(data) {
if(data.status == 1) {
$.fancybox.close(true);
$("#userid").html('
' + data.fullname + '');
$.getJSON("https://sports.unisda.ac.id/auth/user_img?callback=?", { id : data.user_id,size : '22' }, function(data) {
$("#img_uhead").html(data.img);
$("#img_uhead img").css({"border":"1px solid #555","margin-top":"-2px"});
$("#img_uhead").show();
});
}
else {
// if(types == "fb")
// register('fb','Register with Facebook');
// else
if(types == "gplus")
register('gplus','Register with Google+');
}
});
}