modal('Create a public gist',`Are you sure you want to anonymously publish all your files in the ${path} folder as a public gist on github.com?`,{
label:'OK',
fn:()=>toGist(path,type)
},{
label:'Cancel',
fn:()=>{}
})
modal('Create a public gist',`Are you sure you want to anonymously publish all your files in the ${path} folder as a public gist on github.com?`,'OK',()=>toGist(path,type),'Cancel',()=>{})
modal('Create a public gist',`Are you sure you want to anonymously publish ${path} file as a public gist on github.com?`,{
label:'OK',
fn:()=>toGist(path,type)
},{
label:'Cancel',
fn:()=>{}
})
modal('Create a public gist',`Are you sure you want to anonymously publish ${path} file as a public gist on github.com?`,'OK',()=>toGist(path,type),'Cancel',()=>{})