summaryrefslogtreecommitdiff
path: root/Juick/App.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/App.xaml.cs')
-rw-r--r--Juick/App.xaml.cs12
1 files changed, 4 insertions, 8 deletions
diff --git a/Juick/App.xaml.cs b/Juick/App.xaml.cs
index 1102a91..9d3ac9a 100644
--- a/Juick/App.xaml.cs
+++ b/Juick/App.xaml.cs
@@ -33,7 +33,7 @@ namespace Juick
get
{
return _last ??
- (_last = new MessageListViewModelBase {RestUri = "/messages?1=1"});
+ (_last = new MessageListViewModelBase { RestUri = "/messages?1=1" });
}
}
@@ -47,9 +47,9 @@ namespace Juick
private static RestClient _cl;
public static RestClient Client
{
- get { return _cl ?? (_cl = new RestClient("http://api.juick.com") {UserAgent = "Juick 0.999/Windows Phone " + Environment.OSVersion.Version}); }
+ get { return _cl ?? (_cl = new RestClient("http://api.juick.com") { UserAgent = "Juick 0.999/Windows Phone " + Environment.OSVersion.Version }); }
}
-
+
/// <summary>
/// Provides easy access to the root frame of the Phone Application.
/// </summary>
@@ -96,7 +96,7 @@ namespace Juick
// This code will not execute when the application is reactivated
private void Application_Launching(object sender, LaunchingEventArgs e)
{
-
+
}
// Code to execute when the application is activated (brought to foreground)
@@ -104,10 +104,6 @@ namespace Juick
private void Application_Activated(object sender, ActivatedEventArgs e)
{
// Ensure that application state is restored appropriately
- if (!App.MyFeedView.IsDataLoaded)
- {
- App.MyFeedView.LoadData();
- }
}
// Code to execute when the application is deactivated (sent to background)