16 lines
398 B
CoffeeScript
16 lines
398 B
CoffeeScript
context = window
|
|
SessionActions = @SessionActions
|
|
|
|
@SessionVideoBtn = React.createClass({
|
|
|
|
sessionWebCam: (e) ->
|
|
e.preventDefault();
|
|
|
|
SessionActions.toggleSessionVideo()
|
|
|
|
render: () ->
|
|
`<a className="session-share button-grey-toggle left" onClick={this.sessionWebCam}>
|
|
<img src="/assets/content/icon_video.png" align="texttop" height="14" width="14"/>
|
|
VIDEO
|
|
</a>`
|
|
}) |