📝 Add missing colon to Private

This commit is contained in:
Kevin Sawicki
2013-11-22 13:39:24 -08:00
parent 8a05b0f51d
commit 03eac362f6

View File

@@ -55,7 +55,7 @@ class MenuManager
keystrokesByCommand[binding.command].push binding.keystroke
@sendToBrowserProcess(@template, keystrokesByCommand)
# Private
# Private:
loadPlatformItems: ->
menusDirPath = path.join(@resourcePath, 'menus')
platformMenuPath = fs.resolve(menusDirPath, process.platform, ['cson', 'json'])
@@ -85,12 +85,12 @@ class MenuManager
filtered[key].push(binding)
filtered
# Private
# Private:
sendToBrowserProcess: (template, keystrokesByCommand) ->
keystrokesByCommand = @filterMultipleKeystroke(keystrokesByCommand)
ipc.sendChannel 'update-application-menu', template, keystrokesByCommand
# Private
# Private:
normalizeLabel: (label) ->
return undefined unless label?