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