Skip to content

Commit

Permalink
Fix on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyakamens committed May 14, 2020
1 parent b06d08d commit ffd1390
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/directive.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,7 @@ import createOptions from './createOptions';
const options = createOptions();

function triggerInputUpdate(el) {
const fn = trigger.bind(null, el, 'input');
if (isAndroid && isChrome) {
setTimeout(fn, 0);
} else {
fn();
}
trigger.bind(null, el, 'input')();
}

/**
Expand Down

0 comments on commit ffd1390

Please sign in to comment.