am 4b311bc9
: Merge "fix api level filtering script to compare integers, not strings" into honeycomb
* commit '4b311bc91a7851b204c63e678b0213504125d3aa': fix api level filtering script to compare integers, not strings
This commit is contained in:
@@ -56,7 +56,7 @@ function changeApiLevel() {
|
|||||||
if (userApiLevelEnabled == 0) {
|
if (userApiLevelEnabled == 0) {
|
||||||
toggleVisisbleApis(selectedLevel, "body");
|
toggleVisisbleApis(selectedLevel, "body");
|
||||||
} else {
|
} else {
|
||||||
selectedLevel = $("#apiLevelSelector option:selected").val();
|
selectedLevel = parseInt($("#apiLevelSelector option:selected").val());
|
||||||
toggleVisisbleApis(selectedLevel, "body");
|
toggleVisisbleApis(selectedLevel, "body");
|
||||||
|
|
||||||
var date = new Date();
|
var date = new Date();
|
||||||
|
Reference in New Issue
Block a user