From cf7c35d39950b3e0de7a3592335d19287331938b Mon Sep 17 00:00:00 2001 From: Salvatore Iovene Date: Tue, 19 Nov 2013 13:11:32 +0200 Subject: [PATCH] Fix syntax errors. --- src/tizen/SplashScreenProxy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tizen/SplashScreenProxy.js b/src/tizen/SplashScreenProxy.js index cd76a82..3e90443 100644 --- a/src/tizen/SplashScreenProxy.js +++ b/src/tizen/SplashScreenProxy.js @@ -4,11 +4,11 @@ module.exports = { splashscreen: { win: null, - show = function() { + show: function() { win= window.open('splashscreen.html'); }, - hide = function() { + hide: function() { win.close(); win = null; }