Skip to content

Commit

Permalink
Merge "fix api level filtering script to compare integers, not string…
Browse files Browse the repository at this point in the history
…s" into gingerbread
  • Loading branch information
scottamain authored and Android (Google) Code Review committed Feb 4, 2011
2 parents 843c6e2 + af2ba51 commit 886e5aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function changeApiLevel() {
if (userApiLevelEnabled == 0) {
toggleVisisbleApis(selectedLevel, "body");
} else {
selectedLevel = $("#apiLevelSelector option:selected").val();
selectedLevel = parseInt($("#apiLevelSelector option:selected").val());
toggleVisisbleApis(selectedLevel, "body");

var date = new Date();
Expand Down

0 comments on commit 886e5aa

Please sign in to comment.