mirror of
https://github.com/electron/electron.git
synced 2026-01-25 15:28:11 -05:00
Use const/let instead of var
This commit is contained in:
@@ -1,11 +1,9 @@
|
||||
'use strict'
|
||||
|
||||
var MenuItem, methodInBrowserWindow, nextCommandId, rolesMap
|
||||
|
||||
nextCommandId = 0
|
||||
let nextCommandId = 0
|
||||
|
||||
// Maps role to methods of webContents
|
||||
rolesMap = {
|
||||
const rolesMap = {
|
||||
undo: 'undo',
|
||||
redo: 'redo',
|
||||
cut: 'cut',
|
||||
@@ -20,7 +18,7 @@ rolesMap = {
|
||||
}
|
||||
|
||||
// Maps methods that should be called directly on the BrowserWindow instance
|
||||
methodInBrowserWindow = {
|
||||
const methodInBrowserWindow = {
|
||||
minimize: true,
|
||||
close: true
|
||||
}
|
||||
@@ -29,11 +27,11 @@ const methodInApp = {
|
||||
quit: true
|
||||
}
|
||||
|
||||
MenuItem = (function () {
|
||||
const MenuItem = (function () {
|
||||
MenuItem.types = ['normal', 'separator', 'submenu', 'checkbox', 'radio']
|
||||
|
||||
function MenuItem (options) {
|
||||
var click, ref
|
||||
let click, ref
|
||||
const {app, Menu} = require('electron')
|
||||
click = options.click
|
||||
this.selector = options.selector
|
||||
@@ -72,7 +70,7 @@ MenuItem = (function () {
|
||||
this.commandId = ++nextCommandId
|
||||
this.click = (focusedWindow) => {
|
||||
// Manually flip the checked flags when clicked.
|
||||
var methodName, ref1, ref2
|
||||
let methodName, ref1, ref2
|
||||
if ((ref1 = this.type) === 'checkbox' || ref1 === 'radio') {
|
||||
this.checked = !this.checked
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user