Formatting.
This commit is contained in:
parent
072d179944
commit
42dec67764
4 changed files with 24 additions and 24 deletions
|
@ -17,14 +17,14 @@ var app=Application.currentApplication()
|
|||
app.includeStandardAdditions=true
|
||||
app.activate()
|
||||
var res=app.chooseColor({defaultColor:{{json .}}})
|
||||
{"rgb("+res.map(x=>Math.round(x*255))+")"}
|
||||
{'rgb('+res.map(x=>Math.round(x*255))+')'}
|
||||
{{- end}}
|
||||
{{define "dialog" -}}
|
||||
var app=Application.currentApplication()
|
||||
app.includeStandardAdditions=true
|
||||
app.activate()
|
||||
ObjC.import("stdlib")
|
||||
ObjC.import("stdio")
|
||||
ObjC.import('stdio')
|
||||
ObjC.import('stdlib')
|
||||
var res=app.{{.Operation}}({{json .Text}},{{json .Options}})
|
||||
if(res.gaveUp){$.exit(5)}
|
||||
if(res.buttonReturned==={{json .Extra}}){$.puts(res.buttonReturned)
|
||||
|
|
|
@ -3,4 +3,4 @@ app.includeStandardAdditions = true
|
|||
app.activate()
|
||||
|
||||
var res = app.chooseColor({defaultColor: {{json .}}})
|
||||
{"rgb(" + res.map(x => Math.round(x * 255)) + ")"}
|
||||
{'rgb(' + res.map(x => Math.round(x * 255)) + ')'}
|
|
@ -2,8 +2,8 @@ var app = Application.currentApplication()
|
|||
app.includeStandardAdditions = true
|
||||
app.activate()
|
||||
|
||||
ObjC.import("stdlib")
|
||||
ObjC.import("stdio")
|
||||
ObjC.import('stdio')
|
||||
ObjC.import('stdlib')
|
||||
|
||||
var res = app.{{.Operation}}({{json .Text}}, {{json .Options}})
|
||||
if (res.gaveUp) {
|
||||
|
|
Loading…
Reference in a new issue