aboutsummaryrefslogtreecommitdiffstats
path: root/Resources/friendship
diff options
context:
space:
mode:
Diffstat (limited to 'Resources/friendship')
-rw-r--r--Resources/friendship/ui/LikeList.js2
-rw-r--r--Resources/friendship/ui/LoginWindow.js14
2 files changed, 13 insertions, 3 deletions
diff --git a/Resources/friendship/ui/LikeList.js b/Resources/friendship/ui/LikeList.js
index 8e9f74c..150fb85 100644
--- a/Resources/friendship/ui/LikeList.js
+++ b/Resources/friendship/ui/LikeList.js
@@ -121,7 +121,7 @@
top:item_type.height + 2,
left: profile_icon.width + 14,
height:'auto',
- wordWrap:'true'
+ wordWrap:false
});
var liked_by = Ti.UI.createLabel({
diff --git a/Resources/friendship/ui/LoginWindow.js b/Resources/friendship/ui/LoginWindow.js
index f2bd735..4a48c64 100644
--- a/Resources/friendship/ui/LoginWindow.js
+++ b/Resources/friendship/ui/LoginWindow.js
@@ -17,7 +17,7 @@
// add the button. Note that it doesn't need a click event or anything.
return Ti.Facebook.createLoginButton({
- top: 50,
+ top: 300,
style: 'wide'
});
};
@@ -29,8 +29,17 @@
tabBarHidden: true,
backgroundColor: fs.ui.styles.navBarColour
});
+
+ var icon = Ti.UI.createImageView({
+ image:"images/SphnxLogo300.png",
+ width:225,
+ height:225,
+ left: 'auto',
+ top: 38
+ });
+
var view = Ti.UI.createView({
- backgroundColor: '#fff'
+ backgroundColor: fs.ui.styles.navBarColour
});
var tab = Ti.UI.createTab({
@@ -39,6 +48,7 @@
tab_group.addTab(tab);
view.add(createFBLoginButton());
+ view.add(icon);
win.add(view);
return tab_group;