mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-05 07:16:39 +00:00
30 lines
629 B
JavaScript
30 lines
629 B
JavaScript
var custom = (function(){
|
|
|
|
var exports = {}
|
|
|
|
exports.clone = function (){
|
|
var new_brush = brush.clone()
|
|
var rapper = document.createElement("div")
|
|
rapper.className = "custom"
|
|
new_brush.append(rapper)
|
|
custom_rapper.appendChild(rapper)
|
|
// store in localstorage?
|
|
rapper.addEventListener("click", function(e){
|
|
if (e.shiftKey) {
|
|
rapper.parentNode.removeChild(rapper)
|
|
delete new_brush
|
|
} else {
|
|
// load this brush
|
|
exports.load(new_brush)
|
|
}
|
|
})
|
|
}
|
|
|
|
exports.load = function(new_brush){
|
|
brush.assign( new_brush )
|
|
}
|
|
|
|
return exports
|
|
|
|
})()
|