Fix inline menu click problem in 0.11.1

This commit is contained in:
afc163 2016-01-02 01:26:40 +08:00
parent 7be38406da
commit 92c56889a3
2 changed files with 5 additions and 4 deletions

View File

@ -14,8 +14,9 @@
- 新增 `rowSelection.onChange``rowSelection.selectedRowKeys`,完善选择功能。 - 新增 `rowSelection.onChange``rowSelection.selectedRowKeys`,完善选择功能。
- 更新 dataSource 时,选中项现在会被清空。 - 更新 dataSource 时,选中项现在会被清空。
- 修复一个全选框和禁用的选择项配合的问题。 - 修复一个全选框和禁用的选择项配合的问题。
- 修复 `0.11.1`版本 menu 内嵌型菜单inline选中后关闭的问题。
- 修复 `0.11.1`版本对 React 版本要求太严的问题,对应的警告提示对于 `0.14.x` 将不再出现。
- 组件和文档的样式小调整。 - 组件和文档的样式小调整。
- 修复 `0.11.1`版本 对 React 版本要求太严的问题,对应的警告提示对于 `0.14.x` 将不再出现。
## 0.11.1 `2015-12-29` ## 0.11.1 `2015-12-29`

View File

@ -58,7 +58,7 @@ const AntMenu = React.createClass({
let props = {}; let props = {};
const className = this.props.className + ' ' + this.props.prefixCls + '-' + this.props.theme; const className = this.props.className + ' ' + this.props.prefixCls + '-' + this.props.theme;
if (this.props.mode === 'inline') { if (this.props.mode !== 'inline') {
// //
// //
// 使 // 使
@ -67,12 +67,12 @@ const AntMenu = React.createClass({
onClick: this.handleClick, onClick: this.handleClick,
onOpen: this.handleOpenKeys, onOpen: this.handleOpenKeys,
onClose: this.handleCloseKeys, onClose: this.handleCloseKeys,
openAnimation, openTransitionName: openAnimation,
className, className,
}; };
} else { } else {
props = { props = {
openTransitionName: openAnimation, openAnimation,
className, className,
}; };
} }