Remove trailing comma in tray code example

This commit is contained in:
Thomas Tuts 2015-06-09 18:11:40 +02:00
parent 2f4333b852
commit 35dcdfc492

View file

@ -15,7 +15,7 @@ app.on('ready', function(){
{ label: 'Item1', type: 'radio' },
{ label: 'Item2', type: 'radio' },
{ label: 'Item3', type: 'radio', checked: true },
{ label: 'Item4', type: 'radio' },
{ label: 'Item4', type: 'radio' }
]);
appIcon.setToolTip('This is my application.');
appIcon.setContextMenu(contextMenu);