js/ui/custom.js: allow deletion of brushes w/ <Shift> + LMB.

This commit is contained in:
Lucio Andrés Illanes Albornoz (arab, vxp) 2018-10-24 17:37:17 +02:00 committed by Lucio Andrés Illanes Albornoz
parent 2106b77586
commit 7e264f8a8b

View File

@ -9,9 +9,14 @@ var custom = (function(){
new_brush.append(rapper)
custom_rapper.appendChild(rapper)
// store in localstorage?
rapper.addEventListener("click", function(){
// load this brush
exports.load(new_brush)
rapper.addEventListener("click", function(e){
if (e.shiftKey) {
rapper.parentNode.removeChild(rapper)
delete new_brush
} else {
// load this brush
exports.load(new_brush)
}
})
}