Add default label/accelerator to role menu items

This commit is contained in:
Kevin Sawicki 2016-06-22 10:45:01 -07:00
parent 25b2724ab9
commit 13a6d32ee9
2 changed files with 17 additions and 3 deletions

View file

@ -1,4 +1,4 @@
module.exports = {
const roles = {
undo: {
label: 'Undo',
accelerator: 'CmdOrCtrl+Z',
@ -63,3 +63,15 @@ module.exports = {
method: 'toggleFullScreen'
}
}
exports.getDefaultLabel = function (role) {
if (roles.hasOwnProperty(role)) {
return roles[role].label
} else {
return ''
}
}
exports.getDefaultAccelerator = function (role) {
if (roles.hasOwnProperty(role)) return roles[role].accelerator
}