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

Commit af2ba51e authored by Scott Main's avatar Scott Main
Browse files

fix api level filtering script to compare integers, not strings

Change-Id: I4d0d6c40dd5c1f8470567ef30f0f7500b442fbe5
parent 0fe9974c
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();