Skip to content

Commit 68b890a

Browse files
Clean up.
1 parent 65da780 commit 68b890a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Examples/UICatalog/UICatalog/js/buttonsViewController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var ButtonsViewController = JSB.defineClass('ButtonsViewController : UITableView
2121

2222
button.backgroundColor = UIColor.clearColor();
2323

24-
button.addTargetActionForControlEvents(target, selector, 1 << 6);
24+
button.addTargetActionForControlEvents(target, selector, 1 << 6);
2525

2626
return button;
2727
};

Examples/UICatalog/UICatalog/js/collectionViewController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var CollectionViewController = JSB.defineClass('CollectionViewController : UICol
22
viewDidLoad: function() {
33
self.navigationItem.title = 'Photo Album';
44

5-
self.view.backGroundColor = UIColor.whiteColor();
5+
self.view.backgroundColor = UIColor.whiteColor();
66

77
self.collectionViewLayout.itemSize = {width: 77, height: 77};
88
self.collectionViewLayout.minimumInteritemSpacing = 0;

Examples/UICatalog/UICatalog/js/twitterViewController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ var TwitterViewController = JSB.defineClass('TwitterViewController : UITableView
5757
}
5858

5959
self.navigationItem.title = 'Twitter';
60-
self.view.backGroundColor = UIColor.whiteColor();
60+
self.view.backgroundColor = UIColor.whiteColor();
6161

6262
self.tableView.registerClassForCellReuseIdentifier(TwitterCell, 'Cell');
6363

0 commit comments

Comments
 (0)