style(): tslint

This commit is contained in:
Ibby 2016-10-27 09:17:11 -04:00
parent 00e63d9fc8
commit bec0eac122
2 changed files with 13 additions and 4 deletions

View File

@ -158,9 +158,18 @@ export class NFC {
* @private
*/
export class Ndef {
private static name = 'NFC';
private static plugin = 'phonegap-nfc';
private static pluginRef = 'ndef';
/**
* @private
*/
static name = 'NFC';
/**
* @private
*/
static plugin = 'phonegap-nfc';
/**
* @private
*/
static pluginRef = 'ndef';
@Cordova({ sync: true })
static uriRecord(uri: string): any { return; }

View File

@ -83,7 +83,7 @@ function setIndex(args: any[], opts: any = {}, resolve?: Function, reject?: Func
}
};
if(opts.successIndex > opts.errorIndex) {
if (opts.successIndex > opts.errorIndex) {
setErrorIndex();
setSuccessIndex();
} else {