-
Updated
Nov 28, 2020 - JavaScript
osjs
Here are 67 public repositories matching this topic...
-
Updated
Jan 5, 2020 - CSS
-
Updated
Sep 10, 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])))
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.
The panel item index needs to be forwarded, then a load/save method needs to be added to the PanelItem class.
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.