Skip to content

Commit

Permalink
fixes and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tonylukasavage committed Sep 18, 2011
1 parent 28d415c commit a146fb1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion Resources/examples/logging.js
Expand Up @@ -3,7 +3,10 @@ var win= Titanium.UI.currentWindow;
var l = Titanium.UI.createLabel({
text:'Check the log for output',
width:'auto',
height:'auto'
height:'auto',
font: {
fontSize: 24
}
});

win.add(l);
Expand Down
6 changes: 3 additions & 3 deletions Resources/examples/network.js
Expand Up @@ -2,7 +2,7 @@ var win = Titanium.UI.currentWindow;

var label = Titanium.UI.createLabel({
text:'type:' + Titanium.Network.networkType + ' online:' + Titanium.Network.online + ' name:'+Titanium.Network.networkTypeName,
font:{fontSize:14},
font:{fontSize:24},
color:'#777',
top:10,
left:10,
Expand All @@ -13,9 +13,9 @@ win.add(label);

var label2 = Titanium.UI.createLabel({
text:'Change Event: not fired',
font:{fontSize:14},
font:{fontSize:24},
color:'#777',
top:30,
top:50,
left:10,
width:'auto',
height:'auto'
Expand Down
5 changes: 4 additions & 1 deletion Resources/examples/properties.js
Expand Up @@ -26,7 +26,10 @@ function resultHelper(result, expected) {
var l = Titanium.UI.createLabel({
text:'See Log for output',
height:'auto',
width:'auto'
width:'auto',
font: {
fontSize: 24
}
});
win.add(l);

Expand Down

0 comments on commit a146fb1

Please sign in to comment.