blob: 3be13cf9bf53cf2b8843c3bf52406b8a1d748e2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.
module.exports = React.createClass({
handleConfirm: function() {
$('#'+this.props.parent_id).attr('data-confirm', 'true');
$('#'+this.props.parent_id).modal('hide');
$('#'+this.props.id).modal('hide');
},
render: function() {
return (
<div className="modal fade" id={this.props.id} tabIndex="-1" role="dialog" aria-hidden="true">
<div className="modal-dialog">
<div className="modal-content">
<div className="modal-header">
<h4 className="modal-title">{this.props.title}</h4>
</div>
<div className="modal-body">
{this.props.message}
</div>
<div className="modal-footer">
<button type="button" className="btn btn-default" data-dismiss="modal">Cancel</button>
<button onClick={this.handleConfirm} type="button" className="btn btn-primary">{this.props.confirm_button}</button>
</div>
</div>
</div>
</div>
);
}
});
|