16 lines
393 B
CoffeeScript
16 lines
393 B
CoffeeScript
context = window
|
|
|
|
@SessionNotification = React.createClass({
|
|
|
|
render: () ->
|
|
`<div className="session-notification">
|
|
<div className="msg">{this.props.msg}</div>
|
|
</div>`
|
|
|
|
componentDidMount: () ->
|
|
|
|
$root = $(@getDOMNode())
|
|
|
|
if @props.detail
|
|
context.JK.hoverBubble($root, @props.detail, {offsetParent:$root.closest('.top-parent'), positions: ['left', 'bottom']})
|
|
}) |