update LuaPlayground + add Docify

This commit is contained in:
lxsang
2020-11-19 20:07:28 +00:00
parent e3862fb0f5
commit dbe567aad9
20 changed files with 160 additions and 357 deletions

View File

@ -1,4 +1,8 @@
#LuaPlayground
Application for serverside code testing and analytics tool.
It allows to execute lua code on the server from the browser
It allows to execute lua code on the server from the browser
## Change logs
* 0.0.5-a: Fix worker path error

View File

@ -1,4 +1,8 @@
#LuaPlayground
Application for serverside code testing and analytics tool.
It allows to execute lua code on the server from the browser
It allows to execute lua code on the server from the browser
## Change logs
* 0.0.5-a: Fix worker path error

File diff suppressed because one or more lines are too long

View File

@ -6,7 +6,7 @@
"author": "Xuan Sang LEs",
"email": "xsang.le@gmail.com"
},
"version":"0.0.4-a",
"version":"0.0.5-a",
"category":"System",
"iconclass":"fa fa-adn",
"mimes":["none"]

View File

@ -149,7 +149,7 @@ class LuaPlayground extends this.OS.application.BaseApplication
main: () ->
@datarea = @find "editorea"
@output = @find "output"
ace.config.set('basePath', '/scripts/ace')
ace.config.set('basePath', "#{window.location.pathname}/scripts/ace")
@.editor = ace.edit @datarea
@.editor.setOptions {
enableBasicAutocompletion: true,

View File

@ -6,7 +6,7 @@
"author": "Xuan Sang LEs",
"email": "xsang.le@gmail.com"
},
"version":"0.0.4-a",
"version":"0.0.5-a",
"category":"System",
"iconclass":"fa fa-adn",
"mimes":["none"]