$()

in assets/www/scripts/photark_picasa.js [77:94]


$(document).ready(function() {
	$('#picasaSwitch').off('change');
	$("#picasa").empty();
	$('#picasaSwitch').on('change', function()
	{
		if($(this).val()==="off")
		{
			$("#picasa").empty();
		}
		else
		{
			var login_url=GOOGLE_AUTH_URL+'?scope='+PICASA_SCOPE+'&redirect_uri='+redirect_uri+'&response_type=code&client_id='+GOOGLE_CLIENT_ID+'&approval_prompt=force'+'&access_type=offline';
			console.log(login_url);
			window.plugins.childBrowser.showWebPage(login_url, { showLocationBar: true });
			window.plugins.childBrowser.onClose=get_accesstoken;
		}
	});
});