This commit is contained in:
Nikolaos Laskaris 2017-11-02 10:31:08 +02:00
parent 775e8f0d31
commit a33c7056d2
2 changed files with 1 additions and 8 deletions

View File

@ -182,6 +182,7 @@ export class DynamicFormComponent implements OnInit {
private patchForm(flatList : any){
debugger;
for (var prop in flatList) {
if (flatList.hasOwnProperty(prop)) {
if(prop.endsWith('.id')||prop.endsWith('.answer')||prop.endsWith('.value')) continue;

View File

@ -72,14 +72,6 @@ export class GooggleSignInComponent implements OnInit, AfterViewInit {
this.googleInit();
}
/*
signOut() {
var auth2 = gapi.auth2.getAuthInstance();
auth2.signOut().then(function () {
console.log('User signed out.');
});
}
*/
}