Add more detailed tooltips

This commit is contained in:
Brenden Tuck 2019-03-21 10:23:59 -04:00
parent 85d1b78da1
commit 0b2fd9f4bf

View file

@ -21,6 +21,7 @@ plugin_handler.add('goldenlayout', (function () {
type: 'component', type: 'component',
componentName: 'Main', componentName: 'Main',
isClosable: false, isClosable: false,
tooltip: 'Main - drag to desird position.',
componentState: { componentState: {
types: 'untagged', types: 'untagged',
update_method: 'newlines', update_method: 'newlines',
@ -32,12 +33,14 @@ plugin_handler.add('goldenlayout', (function () {
componentName: 'input', componentName: 'input',
id: 'inputComponent', id: 'inputComponent',
height: 12, height: 12,
tooltip: 'Input - The last input in the layout is always the default.',
}, { }, {
type: 'component', type: 'component',
componentName: 'input', componentName: 'input',
id: 'inputComponent', id: 'inputComponent',
height: 12, height: 12,
isClosable: false, isClosable: false,
tooltip: 'Input - The last input in the layout is always the default.',
}] }]
}] }]
}; };