Skip to content

Commit

Permalink
Merge pull request #581 from NicolasRoehm/master
Browse files Browse the repository at this point in the history
[Add] itp_support attr to Google btn
  • Loading branch information
Heatmanofurioso authored Aug 19, 2022
2 parents d51bf94 + 54bc547 commit e4521f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Options:
| width | string | '200 - 400 ' | |
| theme | string | 'outline','filled_blue' or 'filled_black' | 'outline' |
| logo_alignment | string | 'left' or 'center' | 'left' |

| itp_support | boolean | true or false | true |



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ export class GoogleSigninButtonDirective {
@Input()
logo_alignment: 'left' | 'center' = 'left';

@Input()
itp_support: boolean = true;

@Input()
width: string = '';

Expand Down Expand Up @@ -57,7 +60,7 @@ export class GoogleSigninButtonDirective {
theme: this.theme,
logo_alignment: this.logo_alignment,
locale: this.locale,

itp_support: this.itp_support,
});
}
});
Expand Down

0 comments on commit e4521f3

Please sign in to comment.