I need to add virtual keyboard to some pages in the Angular 2 app I am currently working on. I am using angular quickstart directory from the official Angular tutorial as the starting point for my app, so my app is structured the way the quickstart app is structured.
I am trying to follow the instructions on this page:
Under "Usage" it says:
"1) Import the angular-virtual-keyboard.min.js script in your page." - what does that mean? Should I include this element in my index.html?
<script src="node_modules/systemjs/angular-virtual-keyboard/release/angular-virtual-keyboard.min.js"></script>
"2) Include the module angular-virtual-keyboard in your angular app" - how exactly am I supposed to do that? Should I add something to my app.module.ts?