Merge pull request #147 from rgarmsen2295/mm-934
MM-934 Users can no longer "click n' drag" text boxes to resize them
Этот коммит содержится в:
@@ -43,7 +43,7 @@ module.exports = React.createClass({
|
|||||||
<h4 className="modal-title" ref="title">Edit {this.state.title} Description</h4>
|
<h4 className="modal-title" ref="title">Edit {this.state.title} Description</h4>
|
||||||
</div>
|
</div>
|
||||||
<div className="modal-body">
|
<div className="modal-body">
|
||||||
<textarea className="form-control" rows="6" ref="channelDesc" maxLength="1024" value={this.state.description} onChange={this.handleUserInput}></textarea>
|
<textarea className="form-control" style={{resize: "none"}} rows="6" ref="channelDesc" maxLength="1024" value={this.state.description} onChange={this.handleUserInput}></textarea>
|
||||||
</div>
|
</div>
|
||||||
<div className="modal-footer">
|
<div className="modal-footer">
|
||||||
<button type="button" className="btn btn-default" data-dismiss="modal">Close</button>
|
<button type="button" className="btn btn-default" data-dismiss="modal">Close</button>
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ module.exports = React.createClass({
|
|||||||
<div className="modal-body">
|
<div className="modal-body">
|
||||||
<p>{"The link below is used for open " + strings.TeamPlural + " or if you allowed your " + strings.Team + " members to sign up using their " + strings.Company + " email addresses."}
|
<p>{"The link below is used for open " + strings.TeamPlural + " or if you allowed your " + strings.Team + " members to sign up using their " + strings.Company + " email addresses."}
|
||||||
</p>
|
</p>
|
||||||
<textarea className="form-control" readOnly="true" value={this.state.value}></textarea>
|
<textarea className="form-control" style={{resize: "none"}} readOnly="true" value={this.state.value}></textarea>
|
||||||
</div>
|
</div>
|
||||||
<div className="modal-footer">
|
<div className="modal-footer">
|
||||||
<button type="button" className="btn btn-default" data-dismiss="modal">Close</button>
|
<button type="button" className="btn btn-default" data-dismiss="modal">Close</button>
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ module.exports = React.createClass({
|
|||||||
</div>
|
</div>
|
||||||
<div className="form-group">
|
<div className="form-group">
|
||||||
<label className='control-label'>Description</label>
|
<label className='control-label'>Description</label>
|
||||||
<textarea className="form-control" ref="channel_desc" rows="3" placeholder="Description" maxLength="1024"></textarea>
|
<textarea className="form-control" style={{resize: "none"}} ref="channel_desc" rows="3" placeholder="Description" maxLength="1024"></textarea>
|
||||||
</div>
|
</div>
|
||||||
{ server_error }
|
{ server_error }
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user