summaryrefslogtreecommitdiff
path: root/Juick/App.xaml.cs
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2013-04-03 01:23:55 +0400
committerGravatar Vitaly Takmazov2013-04-03 01:23:55 +0400
commit4959050e7996e92ac97f4d05064130251a0628c5 (patch)
treed7e8e84a9d1c35ce3e1fd3a20f1b33d0e8034a20 /Juick/App.xaml.cs
parentcc4665499b182c32481d506d2e1e65ba41a6370b (diff)
Viewmodels refactoring
Diffstat (limited to 'Juick/App.xaml.cs')
-rw-r--r--Juick/App.xaml.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Juick/App.xaml.cs b/Juick/App.xaml.cs
index 8662972..98dc31c 100644
--- a/Juick/App.xaml.cs
+++ b/Juick/App.xaml.cs
@@ -22,7 +22,7 @@ namespace Juick
// Delay creation of the view model until necessary
if (context == null) {
context = new AppViewModel();
- context.Pages.Add(new PageViewModel(context));
+ context.Pages.Add(new PageViewModel(context) { RestUri = "/home?1=1" });
context.Pages.Add(new PageViewModel(context) { RestUri = "/messages?1=1" });
};
return context;