fix instance

This commit is contained in:
afc163 2015-06-05 11:41:45 +08:00
parent 6ca3fd55bb
commit 7e4fcfed27

View File

@ -46,5 +46,6 @@ module.exports = function (props) {
props.visible = true;
props.children = props.content;
props.footer = footer;
return React.render(<Dialog {...props}/>, div);
var d = React.render(<Dialog {...props}/>, div);
return d;
};