am 053f5491: am 4b311bc9: Merge "fix api level filtering script to compare integers, not strings" into honeycomb

* commit '053f5491340f5bacddd9943521c8f1b1d0c0bb6a':
  fix api level filtering script to compare integers, not strings
This commit is contained in:
Scott Main 2011-02-07 13:47:05 -08:00 committed by Android Git Automerger
commit 3fbd3207f2

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