Created
February 2, 2018 18:53
-
-
Save betweenbrain/cad62557a6aa680916b578c246db6e64 to your computer and use it in GitHub Desktop.
Use JavaScript library with Angular v4+
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Component} from '@angular/core'; | |
import * as MobileDetect from '../../node_modules/mobile-detect/mobile-detect'; | |
@Component({ | |
selector: 'app-root', | |
templateUrl: './app.component.html', | |
styleUrls: ['./app.component.css'] | |
}) | |
export class AppComponent { | |
md: any; | |
mobile: any; | |
constructor() { | |
this.md = new MobileDetect(window.navigator.userAgent); | |
this.mobile = (this.md.mobile() == null) ? 'is not' : 'is'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
app.component.html