comty/globals/contextMenu.js
2020-11-02 17:22:31 +01:00

14 lines
241 B
JavaScript

import { Command } from 'components/Icons'
export default [
{
key: "inspect_element",
title: "Inspect",
icon: <Command />,
require: "embedded",
params: {
onClick: (e) => {
window.inspectElement(e)
}
}
}
]