123456789101112131415161718 |
- const window = require('../../../helper/window');
- const menuFunction = {};
- menuFunction.new = function() {
- window.new('./app/src/edit.html');
- };
- menuFunction.import = function() {
- console.log('Import');
- }
- menuFunction.devTool = function (item, focusedWindow) {
- if (focusedWindow) {
- focusedWindow.toggleDevTools()
- }
- }
- module.exports = menuFunction;
|