window.isFormElement = function()

in _includes/scripts/utils/utils.js [17:20]


  window.isFormElement = function(node) {
    var tagName = node.tagName;
    return tagName === 'INPUT' || tagName === 'SELECT' || tagName === 'TEXTAREA';
  };