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

Commit 11057f5a authored by Scott Main's avatar Scott Main
Browse files

fix api level filtering script to compare integers, not strings

Change-Id: I8f0e44ec2bf0833a0d547a3795ee31ee0dc69d8a
parent a16d7d8a
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();