Skip to content

Commit

Permalink
fix(touchid): make isAvailable static
Browse files Browse the repository at this point in the history
  • Loading branch information
mlynch committed Jul 14, 2016
1 parent 0315e63 commit c23f5e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/touchid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class TouchID {
* @return {Promise} Returns a Promise that resolves if yes, rejects if no.
*/
@Cordova()
isAvailable(): Promise<any> { return; }
static isAvailable(): Promise<any> { return; }

/**
* Show TouchID dialog and wait for a fingerprint scan. If user taps 'Enter Password' button, brings up standard system passcode screen.
Expand Down

0 comments on commit c23f5e9

Please sign in to comment.