Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 61281638 authored by Scott Main's avatar Scott Main Committed by Android Git Automerger
Browse files

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

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

* commit '886e5aa7':
  fix api level filtering script to compare integers, not strings
parents 3e01b483 886e5aa7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();