Skip to content

Commit

Permalink
touch ups
Browse files Browse the repository at this point in the history
  • Loading branch information
tonylukasavage committed Sep 18, 2011
1 parent 62b0544 commit 08c9c64
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
14 changes: 7 additions & 7 deletions Resources/examples/clipboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ win.orientationModes = [
];

var source = Titanium.UI.createTextField({
height:45,
height:55,
top:10,
left:10,
width:250,
Expand All @@ -19,8 +19,8 @@ win.add(source);

var copy = Titanium.UI.createButton({
title:'Copy',
height:40,
top:55,
height:50,
top:70,
left:10,
width:250
});
Expand All @@ -31,8 +31,8 @@ copy.addEventListener('click', function()
win.add(copy);

var dest = Titanium.UI.createTextField({
height:45,
top:120,
height:55,
top:140,
left:10,
width:250,
hintText: 'paste here',
Expand All @@ -42,8 +42,8 @@ win.add(dest);

var paste = Titanium.UI.createButton({
title:'Paste',
height:40,
top:165,
height:50,
top:200,
left:10,
width:250
});
Expand Down
5 changes: 4 additions & 1 deletion Resources/examples/search_case_insensitive.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
var win = Ti.UI.currentWindow;

var l = Ti.UI.createLabel({
text:'Check console output'
text:'Check console output',
font: {
fontSize: 24
}
});

win.add(l);
Expand Down

0 comments on commit 08c9c64

Please sign in to comment.