Skip to content

Commit

Permalink
remove async handling of change / input events in form widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
aFarkas committed Apr 28, 2014
1 parent ee9917f commit 44ebcd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions js-webshim/dev/shims/forms-picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -372,9 +372,7 @@ webshims.register('forms-picker', function($, webshims, window, document, undefi
if (events[name] && events[name].val != val) {
clearTimeout(events[name].timer);
events[name].val = val;
events[name].timer = setTimeout(function(){
events[name].fn(val, that);
}, 9);
events[name].fn(val, that);
}
}
};
Expand Down
Loading

0 comments on commit 44ebcd3

Please sign in to comment.