SoundBox is an HTML5 synth music tracker/editor, suitable for creating music for small JavaScript demos (4K / 8K).
429
stars
75
forks
source link
make keyboard image not draggable + use css to disable all dragging #40
Closed
esaruoho closed 7 years ago
added draggable="false" to img id keyboard. and
img { -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; user-select: none; -webkit-user-drag: none; user-drag: none; -webkit-touch-callout: none; }
to screen.css to make all images un-draggable.