Cosmetic reformatting of multiple jsx files

Этот коммит содержится в:
Reed Garmsen
2015-08-31 09:35:31 -07:00
родитель 5b81125e4d
Коммит e2a24f40b7
24 изменённых файлов: 1326 добавлений и 699 удалений

Просмотреть файл

@@ -3,34 +3,61 @@
var UserStore = require('../stores/user_store.jsx');
module.exports = React.createClass({
getInitialState: function() {
return { };
},
render: function() {
var currentUser = UserStore.getCurrentUser()
export default class PostDeletedModal extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
render() {
var currentUser = UserStore.getCurrentUser();
if (currentUser != null) {
return (
<div className="modal fade" ref="modal" id="post_deleted" tabIndex="-1" role="dialog" aria-hidden="true">
<div className="modal-dialog">
<div className="modal-content">
<div className="modal-header">
<button type="button" className="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 className="modal-title" id="myModalLabel">Comment could not be posted</h4>
<div
className='modal fade'
ref='modal'
id='post_deleted'
tabIndex='-1'
role='dialog'
aria-hidden='true'
>
<div className='modal-dialog'>
<div className='modal-content'>
<div className='modal-header'>
<button
type='button'
className='close'
data-dismiss='modal'
aria-label='Close'
>
<span aria-hidden='true'>&times;</span>
</button>
<h4
className='modal-title'
id='myModalLabel'
>
Comment could not be posted
</h4>
</div>
<div className='modal-body'>
<p>Someone deleted the message on which you tried to post a comment.</p>
</div>
<div className='modal-footer'>
<button
type='button'
className='btn btn-primary'
data-dismiss='modal'
>
Okay
</button>
</div>
</div>
<div className="modal-body">
<p>Someone deleted the message on which you tried to post a comment.</p>
</div>
<div className="modal-footer">
<button type="button" className="btn btn-primary" data-dismiss="modal">Okay</button>
</div>
</div>
</div>
</div>
</div>
);
} else {
return <div/>;
}
return <div/>;
}
});
}