mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
feat(clickBlock): enable click block only on iOS
This commit is contained in:
@ -24,7 +24,6 @@ import * as dom from '../util/dom';
|
||||
export function ionicProviders(args={}) {
|
||||
let fastdom = new FastDom();
|
||||
|
||||
let app = new IonicApp(fastdom);
|
||||
let platform = new Platform();
|
||||
let navRegistry = new NavRegistry(args.pages);
|
||||
|
||||
@ -40,6 +39,8 @@ export function ionicProviders(args={}) {
|
||||
platform.load();
|
||||
config.setPlatform(platform);
|
||||
|
||||
let app = new IonicApp(config, fastdom);
|
||||
|
||||
let events = new Events();
|
||||
initTapClick(window, document, app, config, fastdom);
|
||||
let featureDetect = new FeatureDetect();
|
||||
|
Reference in New Issue
Block a user