1var contextMenu = Menu.buildFromTemplate([
2 { label: 'Show App', click: function(){
3 mainWindow.show();
4 } },
5 { label: 'Quit', click: function(){
6 application.isQuiting = true;
7 application.quit();
8 } }
9]);
10