Calendar.prototype.getElementById = function()

in web/src/main/resources/static/js/date.js [553:568]


Calendar.prototype.getElementById = function (id) {
  if (typeof (id) != "string" || id == "") {
    return null;
  }
  if (document.getElementById) {
    return document.getElementById(id);
  }
  if (document.all) {
    return document.all(id);
  }
  try {
    return eval(id);
  } catch (e) {
    return null;
  }
}