()
| 101 | d3.select('#photo').on('click', init) |
| 102 | |
| 103 | function init(){ |
| 104 | if (!navigator.getUserMedia) return noStream() |
| 105 | navigator.getUserMedia({video: true}, gotStream, noStream); |
| 106 | } |
| 107 | |
| 108 | } |
| 109 |
nothing calls this directly
no test coverage detected