I run
npm install fastclick --save
typings install dt~fastclick --global --save
at my project and run this code at the app.ts
import {FastClick} from 'fastclick';
export class AppComponent {
constructor(
app: App,
platform: Platform, private menu: MenuController, translate: TranslateService,
fbProvider: FbProvider, userData: UserData, events: Events) {
FastClick.attach(document.body);
But I do not see any performance improvement. I am missing something?
Best regards
Fernando