Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added first TODO #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/src/main/java/com/github/mobile/ui/BaseActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ public class BaseActivity extends RoboActionBarActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);



finder = new ViewFinder(this);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ public NavigationDrawerAdapter(Context context, List<User> orgs, final AvatarLoa
createData();
}

//TODO
//Add link to view personal profile
private void createData() {
orgs.remove(0);
String[] names = new String[] { context.getString(R.string.home), context.getString(R.string.gist),
context.getString(R.string.issue_dashboard), context.getString(R.string.bookmarks) };
context.getString(R.string.issue_dashboard), context.getString(R.string.bookmarks), "Profile" };
String[] icons = context.getResources().getStringArray(R.array.navigation_drawer_icon_list);
data = new ArrayList<>();
int amount = names.length + orgs.size() + 2;
Expand Down