jam-cloud/web/app/assets/javascripts/react-components/SessionVideoBtn.js.jsx.coffee

16 lines
396 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_cam.png" align="texttop" height="12" width="12"/>
VIDEO
</a>`
})