From: Aron kim Date: Thu, 29 Aug 2019 08:33:36 +0000 (-0700) Subject: Revert "Set default background color for product wearable." X-Git-Tag: submit/tizen_5.5/20191113.043747^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=79bf5d968f1bfc7de05086cd78280759cb1e2265;p=platform%2Fframework%2Fweb%2Fwrtjs.git Revert "Set default background color for product wearable." Change the default background color black to white again. This reverts commit 457b861449738f2e5406c75e94909e4e3aeb6184. Change-Id: Id8b899b24f6daccd442df43d0fd97ad5cf543835 Signed-off-by: Aron kim --- diff --git a/wrt_app/src/web_application.js b/wrt_app/src/web_application.js index 4a2d8042..289f2381 100755 --- a/wrt_app/src/web_application.js +++ b/wrt_app/src/web_application.js @@ -55,8 +55,7 @@ class WebApplication { this.loadFinished = false; this.runningStatus = 'none'; this.isTVProfile = (wrt.getPlatformType() === "product_tv"); - this.defaultBackgroundColor = (this.isTVProfile - || (wrt.getPlatformType() === "product_wearable") ? '#000' : '#FFF'); + this.defaultBackgroundColor = (this.isTVProfile ? '#000' : '#FFF'); this.defaultTransparent = (this.isTVProfile ? true : false); this.addonEmitter = null;