Merge branch 'develop-1.0.0' of github.com:ant-design/ant-design into develop-1.0.0

This commit is contained in:
afc163 2016-03-25 12:19:36 +08:00
commit e378b1f695

View File

@ -24,7 +24,7 @@ class TransferList extends Component {
}, 0);
}
handleSelectALl() {
handleSelectAll() {
this.props.handleSelectAll();
}
@ -57,7 +57,7 @@ class TransferList extends Component {
return (
<span ref="checkbox"
className={checkboxCls}
onClick={(!props.disabled) && this.handleSelectALl.bind(this)}>
onClick={(!props.disabled) && this.handleSelectAll.bind(this)}>
{customEle}
</span>
);