annotate vendor/jcalderonzumba/mink-phantomjs-driver/src/Resources/Script/is_selected.js.twig @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 4c8ae668cc8c
children
rev   line source
Chris@0 1 {% autoescape 'js' %}
Chris@0 2 (function (xpath) {
Chris@0 3 function getElement(xpath) {
Chris@0 4 var polterAgent = window.__poltergeist;
Chris@0 5 var ids = polterAgent.find("xpath", xpath, document);
Chris@0 6 var polterNode = polterAgent.get(ids[0]);
Chris@0 7 return polterNode.element;
Chris@0 8 }
Chris@0 9
Chris@0 10 var node = getElement(xpath);
Chris@0 11 if(typeof node.selected == "undefined"){
Chris@0 12 return null;
Chris@0 13 }
Chris@0 14 return node.selected;
Chris@0 15 }('{{xpath}}'));
Chris@0 16 {% endautoescape %}