am 886e5aa7: Merge "fix api level filtering script to compare integers, not strings" into gingerbread

* commit '886e5aa742c1667de3ca5b628bf6865948ef4513':
  fix api level filtering script to compare integers, not strings
This commit is contained in:
Scott Main 2011-02-04 15:14:57 -08:00 committed by Android Git Automerger
commit 612816385a
1 changed files with 1 additions and 1 deletions

View File

@ -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();