Skip to content

Commit

Permalink
Relates to #52. Removes event.stopPropagation() since it was unnecess…
Browse files Browse the repository at this point in the history
…ary to prevent keyboard event bubbling, only to prevent the default browser behavior. Built as 4.6.1.
  • Loading branch information
bvaughn committed Feb 2, 2016
1 parent 20b9999 commit 9d3b094
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/react-virtualized.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/react-virtualized.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "React components for efficiently rendering large, scrollable lists and tabular data",
"author": "Brian Vaughn <brian.david.vaughn@gmail.com>",
"user": "bvaughn",
"version": "4.6.0",
"version": "4.6.1",
"scripts": {
"build": "npm run build:css && npm run build:dist && npm run build:demo",
"build:css": "postcss --use autoprefixer source/styles.css > styles.css",
Expand Down
1 change: 0 additions & 1 deletion source/Grid/Grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,6 @@ export default class Grid extends Component {

_stopEvent (event) {
event.preventDefault()
event.stopPropagation()
}

/**
Expand Down
1 change: 0 additions & 1 deletion source/VirtualScroll/VirtualScroll.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,6 @@ export default class VirtualScroll extends Component {

_stopEvent (event) {
event.preventDefault()
event.stopPropagation()
}

/**
Expand Down

0 comments on commit 9d3b094

Please sign in to comment.