Merge pull request #369 from benjycui/feature-react@0.14.x

fix: antd build fail
This commit is contained in:
偏右 2015-10-09 12:19:03 +08:00
commit a52de54748
2 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,4 @@
import React from 'react';
import joinClasses from 'react/lib/joinClasses';
import rcUtil from 'rc-util';
function getScroll(w, top) {
@ -89,12 +88,14 @@ let Affix = React.createClass({
},
render() {
let affix = this.state.affix ? 'ant-affix' : '';
let className = this.props.className;
const className = rcUtil.classSet({
[this.props.className]: this.props.className,
'ant-affix': this.state.affix
});
return (
<div {...this.props}>
<div className={joinClasses(className, affix)} style={this.state.affixStyle}>
<div className={className} style={this.state.affixStyle}>
{this.props.children}
</div>
</div>

View File

@ -60,7 +60,7 @@
"rc-tree": "~0.15.4",
"rc-upload": "~1.6.4",
"rc-util": "~2.0.3",
"react-slick": "~0.7.0",
"react-slick": "~0.8.0",
"reqwest-without-xhr2": "~2.0.2",
"util-deprecate": "~1.0.1",
"velocity-animate": "~1.2.2"