Calendar.prototype.getElementsByTagName = function()

in saga-web/src/main/resources/static/js/date.js [571:578]


Calendar.prototype.getElementsByTagName = function (object, tagName) {
  if (document.getElementsByTagName) {
    return document.getElementsByTagName(tagName);
  }
  if (document.all) {
    return document.all.tags(tagName);
  }
}