Skip to content

Commit

Permalink
Make googleplus work on the me page
Browse files Browse the repository at this point in the history
  • Loading branch information
christianvuerings committed Jan 29, 2012
1 parent df39c23 commit d1c3c80
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions me/index.html
Original file line number Diff line number Diff line change
@@ -316,10 +316,20 @@
for(var i in input){
if(input.hasOwnProperty(i)){
$("#" + i, $form).val(input[i]);
list.push({
"service": i,
"user": input[i]
});

if(i !== "googleplus"){
list.push({
"service": i,
"user": input[i]
});
}
else {
list.push({
"service": i,
"user": input[i],
"key": 'AIzaSyCB8pKtPwGWkOMfe49CopUM40F6seVv5AE'
});
}
if(input[i]) {showempty = false};
}
}

0 comments on commit d1c3c80

Please sign in to comment.