diff --git a/js/web/ui.js b/js/web/ui.js new file mode 100644 index 0000000..2fd883c --- /dev/null +++ b/js/web/ui.js @@ -0,0 +1,21 @@ +/* +** (rough) Graphical User Interface emulation of blessed terminal API using jquery +** +*/ + + +// Create a screen +function screen(options) { + var width=80, + height=25; + return { + cursor:{}, + width:width, + height:height + } +} + + +GUI = { + screen:screen +}