-
Updated
Aug 19, 2020 - JavaScript
osjs
Here are 67 public repositories matching this topic...
-
Updated
Jan 5, 2020 - CSS
-
Updated
Jul 31, 2020 - JavaScript
It might be useful to have a launchers property in the package metadata to allow customizing the launchers so you can have ex. multiple menu entries with different launch arguments.
{
launchers: [{
title: 'My Application'
}, {
title: 'My Application (with arguments)'
args: ['foo']
}]
}
Add a configuration option to add a prompt to input which user to log in as:
// Client + Server config
{
xterm: {
prompt: true
}
}
This will basically just add a line to the CLI output with:
Login as:
Example:
// This
Object.keys(obj)
.reduce((current, accumulator) => ({...accumulator, [current]: obj[current]}), {});
// Vs
Object.fromEntries(Object.keys(obj)
.map(key => ([key, obj[key])))
The panel item index needs to be forwarded, then a load/save method needs to be added to the PanelItem class.
Is it possible to add multi select rows capability in file manager and do bulk operation for delete,copy,move?
Scenario
I select two rows(ctrl+leftClick) and click on delete button.
Expected Result
System returns an array of two pathes. finally delete them in an iterate manner.
MUC support
Originally opened in os-js/OS.js#729:
Hello,
I tried getting MUC in strophe js OS.js but it doesn't seem to work. Does OS.js support the Multi User Chatroom?
Required changes:
- MUC Plugin
- MUC Room join functionality
- Leave room on close
- Message handler
- Roster handler
- Presence handler
- Invitation
- Chat window
Improve this page
Add a description, image, and links to the osjs topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the osjs topic, visit your repo's landing page and select "manage topics."
Add
multiselectproperty that allows for selecting multiple entries withShiftkey.