this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #2209 from AlecTroemel/2191-onclick-fix

#2191 focus the canvas on click

authored by

Vadim Grigoruk and committed by
GitHub
2a86ccd4 456488a8

+8
+4
build/html/export.html
··· 83 83 ] 84 84 } 85 85 86 + canvasElement.addEventListener('click', () => { 87 + canvasElement.focus() 88 + }) 89 + 86 90 playElement.addEventListener('click', () => { 87 91 playElement.style.display = 'none' 88 92 canvasElement.focus()
+4
build/html/index.html
··· 81 81 ] 82 82 } 83 83 84 + canvasElement.addEventListener('click', () => { 85 + canvasElement.focus() 86 + }) 87 + 84 88 playElement.addEventListener('click', () => { 85 89 playElement.style.display = 'none' 86 90 canvasElement.focus()