Fix syntax errors.

This commit is contained in:
Salvatore Iovene 2013-11-19 13:11:32 +02:00
parent c368b63f0a
commit cf7c35d399

View File

@ -4,11 +4,11 @@ module.exports = {
splashscreen: { splashscreen: {
win: null, win: null,
show = function() { show: function() {
win= window.open('splashscreen.html'); win= window.open('splashscreen.html');
}, },
hide = function() { hide: function() {
win.close(); win.close();
win = null; win = null;
} }