function dropdownBuildToVal()

in common_landings.js [19:29]


function dropdownBuildToVal(val) {
  if (val === "one build") {
    return 1;
  } else if (val === "two builds") {
    return 2;
  } else if (val === "three builds") {
    return 3;
  }

  throw new Exception("Unknown value " + val);
}