Skylight OS Wiki
A quick and easy to use web operating system
Status: Pre-Alpha
Brought to you by:
seccominc
The Open File Dialog is a small file browser with which users can select files from the server to open. It has a counterpart in the save file dialog.
var path = App.selectFileForOpen();
path.then(function(file) {
var f = App.openFile(file);
});