blob: a758d4839f509c6929a00e2fc03a2f0573331597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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(){
// load this brush
exports.load(new_brush)
})
}
exports.load = function(new_brush){
brush.assign( new_brush )
}
return exports
})()
|