Skip to content

mboussaid/Sketchy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Sketchy

     const sketch = new Sketchy({
            data:{
                colors:['red','blue','green','yellow','orange','black','purple','cyan'],
                defaultColor:"green",
                fileName:"sketch",
                title:"hello"
            },
            events:{
                onColorClicked(){
                    console.log('onColorClicked');
                },
                onCapture(){
                    console.log('onCapture');
                }
            }
        });
        sketch.mount('body')