Skip to content

Instantly share code, notes, and snippets.

@betweenbrain
Created February 2, 2018 18:53
Show Gist options
  • Save betweenbrain/cad62557a6aa680916b578c246db6e64 to your computer and use it in GitHub Desktop.
Save betweenbrain/cad62557a6aa680916b578c246db6e64 to your computer and use it in GitHub Desktop.
Use JavaScript library with Angular v4+
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';
}
}
@betweenbrain
Copy link
Author

app.component.html

<h1>
  Your device {{mobile}} mobile.
</h1>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment