Browse Source

Improve code syntax

Related #229
pull/291/merge
Ramiro Saenz 9 years ago
parent
commit
74af0cb31b
  1. 2
      app.js

2
app.js

@ -82,7 +82,7 @@ ipc.on('autoUpdater:update-downloaded', function(e, releaseNotes, releaseName, r
});
// Set Badge in taskbar for Windows
ipc.on('setBadge', (event, messageCount) => {
ipc.on('setBadge', function(event, messageCount) {
messageCount = messageCount.toString();
var canvas = document.createElement("canvas");
canvas.height = 140;

Loading…
Cancel
Save