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