You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2014/03/13 20:59:03 UTC

[34/35] git commit: calling styleDefault and styleLightContent should only affect text color

calling styleDefault and styleLightContent should only affect text color



Project: http://git-wip-us.apache.org/repos/asf/cordova-statusbar/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-statusbar/commit/3d5ed0a4
Tree: http://git-wip-us.apache.org/repos/asf/cordova-statusbar/tree/3d5ed0a4
Diff: http://git-wip-us.apache.org/repos/asf/cordova-statusbar/diff/3d5ed0a4

Branch: refs/heads/master
Commit: 3d5ed0a4f1d80825158d35d215e75303f4df6fcc
Parents: fa8aa98
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Wed Mar 12 12:00:11 2014 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Wed Mar 12 12:00:11 2014 -0700

----------------------------------------------------------------------
 src/wp/StatusBar.cs | 5 -----
 1 file changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-statusbar/blob/3d5ed0a4/src/wp/StatusBar.cs
----------------------------------------------------------------------
diff --git a/src/wp/StatusBar.cs b/src/wp/StatusBar.cs
index c20f680..ec83ca8 100644
--- a/src/wp/StatusBar.cs
+++ b/src/wp/StatusBar.cs
@@ -79,10 +79,7 @@ namespace WPCordovaClassLib.Cordova.Commands
         {    //exec(null, null, "StatusBar", "styleDefault", []);
             Deployment.Current.Dispatcher.BeginInvoke(() =>
             {
-                SystemTray.BackgroundColor = Colors.White;
                 SystemTray.ForegroundColor = Colors.Black;
-                SystemTray.Opacity = 1.0d;
-
             });
         }
 
@@ -91,9 +88,7 @@ namespace WPCordovaClassLib.Cordova.Commands
             
             Deployment.Current.Dispatcher.BeginInvoke(() =>
             {
-                SystemTray.BackgroundColor = Colors.Black;
                 SystemTray.ForegroundColor = Colors.White;
-                SystemTray.Opacity = 1.0d;
             });
         }