view vendor/jcalderonzumba/mink-phantomjs-driver/src/Resources/Script/is_selected.js.twig @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
line wrap: on
line source
{% autoescape 'js' %}
(function (xpath) {
  function getElement(xpath) {
    var polterAgent = window.__poltergeist;
    var ids = polterAgent.find("xpath", xpath, document);
    var polterNode = polterAgent.get(ids[0]);
    return polterNode.element;
  }

  var node = getElement(xpath);
  if(typeof node.selected == "undefined"){
    return null;
  }
  return node.selected;
}('{{xpath}}'));
{% endautoescape %}