fix some things in platform utils

This commit is contained in:
Kyle Spearrin 2018-04-14 13:32:56 -04:00
parent e871d4749b
commit 789bbe55eb
1 changed files with 2 additions and 3 deletions

View File

@ -167,7 +167,7 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService
}
supportsU2f(win: Window): boolean {
if (win != null && (win as any).u2f !== 'undefined') {
if (win != null && (win as any).u2f != null) {
return true;
}
@ -190,8 +190,7 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService
}
isDev(): boolean {
// TODO?
return true;
return process.env.ENV === 'development';
}
copyToClipboard(text: string, options?: any): void {