I am learning angular2 and building my own custom components using ng2-bootstrap. I want to use modernizer to detect form input which are natively supported by browser.
I am using webpack for building my project.I have successfully configured that.
What I did till now is:
I am not sure how to Modernizr.inputtypes.date in my own custom component?How we can access Modernizr variable in my component?
Any help is much appreciated.
Follow the steps:
Place the type definition of Modernizr into your project folder.
Place the modernizr.js
in your project and access it within any component using relative path like:
import './Lib/modernizr.js';
Done. You should be able to use the Modernizr to detect browser feature support.
Import modernizr like below in your ts file and use it :)
import * as Modernizr from 'modernizr
';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With