Merge pull request #1946 from syncopika/master

remove a stray 's' that caused an error in ball drag example
This commit is contained in:
Ilya Kantor 2020-06-06 12:26:15 +03:00 committed by GitHub
commit 020f2ea5e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@
<script>
ball.onmousedown = function(event) {s
ball.onmousedown = function(event) {
ball.style.position = 'absolute';
ball.style.zIndex = 1000;
document.body.appendChild(ball);