Update react-bootstrap and temporarily disable automatic rendering of the modal view.
This commit is contained in:
parent
0aba6bec26
commit
a8d441f3c7
|
@ -7,7 +7,7 @@
|
|||
"less": "2.5.0",
|
||||
"react": "0.13.3",
|
||||
"bootstrap": "3.2.0",
|
||||
"react-bootstrap": "0.21.2",
|
||||
"react-bootstrap": "0.23.3",
|
||||
"highlight.js": "8.3.0",
|
||||
"marked": "0.3.3",
|
||||
"superagent": "1.2.0",
|
||||
|
|
|
@ -20,12 +20,12 @@ UserLoginModal = React.createClass(
|
|||
console.log('Render UserLoginModal view.')
|
||||
return(
|
||||
|
||||
<Modal {...@props} bsStyle='primary' title='Login' animation={false}>
|
||||
<Modal {...@props} title='Login' animation={false}>
|
||||
|
||||
<div class="modal-body">
|
||||
<div class="error_message">{ @props.error_message }</div>
|
||||
<div class="row">
|
||||
<label class="control-label col-lg-2" for="username">Username</label>
|
||||
<label class="control-label col-lg-offset-1 col-lg-2" for="username">Username</label>
|
||||
<div class="col-lg-8">
|
||||
<input class="form-control" type="text" id="username" placeholder="Username" />
|
||||
</div>
|
||||
|
@ -63,4 +63,4 @@ overlayTriggerInstance = (
|
|||
</ModalTrigger>
|
||||
)
|
||||
|
||||
React.render(overlayTriggerInstance, document.getElementById("user-login-trigger"))
|
||||
module.exports = overlayTriggerInstance
|
||||
|
|
Loading…
Reference in New Issue