Skip to content

Commit

Permalink
Merge pull request #23 from srahim/TIMOB-17173
Browse files Browse the repository at this point in the history
[TIMOB-17173]Removing Deprecated API.
  • Loading branch information
pec1985 committed Jun 20, 2014
2 parents 6692ed2 + 0c02096 commit ad4b8ea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 65 deletions.
1 change: 0 additions & 1 deletion Resources/ui/common/PhoneWindow.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ function PhoneWindow(title) {
data.push({title:'Music', hasChild:true, test:'ui/handheld/ios/phone/music'});
data.push({title:'Proximity Events', hasChild:true, test:'/etc/todo'});
data.push({title:'App Badge', hasChild:true, test:'ui/handheld/ios/phone/app_badge'});
data.push({title:'Status Bar', hasChild:true, test:'ui/handheld/ios/phone/statusbar'});
data.push({title:'Push Notifications', hasChild:true, test:'ui/handheld/ios/phone/push_notification'});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ function scroll_view_noclip(_args) {
//
// SETUP WINDOW STYLES
//
Titanium.UI.iPhone.statusBarStyle = Titanium.UI.iPhone.StatusBar.OPAQUE_BLACK;

var win = Ti.UI.createWindow({
title:_args.title
});

if (Ti.version >= '3.1.3') {
win.statusBarStyle = Ti.UI.iPhone.StatusBar.OPAQUE_BLACK;
}

var cover = Titanium.UI.createView({
backgroundImage:'/images/scrollable_view/bg.png',
zIndex:5
Expand Down
63 changes: 0 additions & 63 deletions Resources/ui/handheld/ios/phone/statusbar.js

This file was deleted.

0 comments on commit ad4b8ea

Please sign in to comment.