--
You received this message because you are subscribed to the Google Groups "node-webkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to node-webkit...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
var trayIcon = new gui.Tray({ title: 'Test', icon: 'img/tray.png' }); trayIcon.on('click', function() { trayIcon.icon = (trayIcon.icon == 'img/tray.png') ? 'img/tray_on.png' : 'img/tray.png'; });