* WIP debug dialog * Rename the p10 downloader extension to debugger extension, add button to toolbar. Deactivate it by default. * Fix unit tests
21 lines
328 B
JavaScript
21 lines
328 B
JavaScript
const TOOLBAR_BUTTON_TYPES = {
|
|
COMMAND: 'command',
|
|
};
|
|
|
|
const definitions = [
|
|
{
|
|
id: 'Debug Info',
|
|
label: 'Debug Info',
|
|
icon: 'cog',
|
|
//
|
|
type: TOOLBAR_BUTTON_TYPES.COMMAND,
|
|
commandName: 'openDebugInfoModal',
|
|
context: 'VIEWER',
|
|
},
|
|
];
|
|
|
|
export default {
|
|
definitions,
|
|
defaultContext: 'VIEWER',
|
|
};
|