view vendor/jcalderonzumba/mink-phantomjs-driver/src/Resources/Script/is_selected.js.twig @ 9:1fc0ff908d1f

Add another data file
author Chris Cannam
date Mon, 05 Feb 2018 12:34:32 +0000
parents 4c8ae668cc8c
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 %}