mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
feat(ripple-effect): add option to disable ripple-effect (#16393)
fixes #16379
This commit is contained in:
@ -21,7 +21,7 @@ export class App implements ComponentInterface {
|
||||
const { win, config, queue } = this;
|
||||
|
||||
if (!config.getBoolean('_testing')) {
|
||||
importTapClick(win);
|
||||
importTapClick(win, config);
|
||||
}
|
||||
|
||||
importInputShims(win, config);
|
||||
@ -54,8 +54,8 @@ function importStatusTap(win: Window, config: Config, queue: QueueApi) {
|
||||
}
|
||||
}
|
||||
|
||||
function importTapClick(win: Window) {
|
||||
import('../../utils/tap-click').then(module => module.startTapClick(win.document));
|
||||
function importTapClick(win: Window, config: Config) {
|
||||
import('../../utils/tap-click').then(module => module.startTapClick(win.document, config));
|
||||
}
|
||||
|
||||
function importInputShims(win: Window, config: Config) {
|
||||
|
Reference in New Issue
Block a user