jam/js/web/ui.js

22 lines
268 B
JavaScript
Raw Normal View History

2025-07-21 23:13:17 +02:00
/*
** (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
}