summaryrefslogtreecommitdiff
path: root/Juick/LoginView.xaml.cs
diff options
context:
space:
mode:
authorGravatar Konstantin2012-10-23 22:33:46 +0400
committerGravatar Konstantin2012-10-23 22:33:46 +0400
commit61d3230b053453c9f8e145341a3def0d1ad8ff32 (patch)
treefaee3b9fe27d845ef5ada4082025f1e2dbf86c85 /Juick/LoginView.xaml.cs
parent1ebf0adc26fd3377b50aacaed798f9866a7ea2eb (diff)
clean
Diffstat (limited to 'Juick/LoginView.xaml.cs')
-rw-r--r--Juick/LoginView.xaml.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Juick/LoginView.xaml.cs b/Juick/LoginView.xaml.cs
index 5e86959..4d6114e 100644
--- a/Juick/LoginView.xaml.cs
+++ b/Juick/LoginView.xaml.cs
@@ -17,8 +17,8 @@ namespace Juick
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
- nextUri = NavigationContext.QueryString.ContainsKey("FileId") ?
- new Uri(string.Format("/NewPostView.xaml?FileId={0}", NavigationContext.QueryString["FileId"]), UriKind.Relative)
+ nextUri = NavigationContext.QueryString.ContainsKey("FileId")
+ ? new Uri(string.Format("/NewPostView.xaml?FileId={0}", NavigationContext.QueryString["FileId"]), UriKind.Relative)
: new Uri("/MainPage.xaml", UriKind.Relative);
}
@@ -26,6 +26,7 @@ namespace Juick
{
App.Account.SignIn(this, textBox1.Text, textBox2.Password, nextUri);
}
+
private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
{
while (NavigationService.BackStack.Any())