| 1 |
function insertAfter(newNode, referenceNode) { |
| 2 |
referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling); |
| 3 |
} |
| 4 |
function getElementByXPath(xPath, doc){ |
| 5 |
if(!doc) doc = document; |
| 6 |
if(doc.evaluate) return doc.evaluate(xPath, document, null, 9, null).singleNodeValue; |
| 7 |
// for IE |
| 8 |
while(xPath.charAt(0) == '/') xPath = xPath.substr(1); |
| 9 |
var prevElem = doc; |
| 10 |
var arr = xPath.split('/'); |
| 11 |
for(var i=0; i<arr.length; i++){ |
| 12 |
var step = arr[i].split(/(\w*)\[(\d*)\]/gi).filter(function(v){ return !(v==''||v.match(/\s/gi)) },this); |
| 13 |
var elem = step[0]; |
| 14 |
var elemNum = step[1]?step[1]-1:0; // -1 since xpath is 1 based |
| 15 |
if(i<arr.length-1) prevElem = prevElem.getElementsByTagName(elem)[elemNum]; |
| 16 |
else return prevElem.getElementsByTagName(elem)[elemNum]; |
| 17 |
} |
| 18 |
} |
| 19 |
|
| 20 |
|
| 21 |
/** |
| 22 |
* Copyright (c) Mozilla Foundation http://www.mozilla.org/ |
| 23 |
* This code is available under the terms of the MIT License |
| 24 |
*/ |
| 25 |
if (!Array.prototype.filter) { |
| 26 |
Array.prototype.filter = function(fun /*, thisp*/) { |
| 27 |
var len = this.length >>> 0; |
| 28 |
if (typeof fun != "function") { |
| 29 |
throw new TypeError(); |
| 30 |
} |
| 31 |
|
| 32 |
var res = []; |
| 33 |
var thisp = arguments[1]; |
| 34 |
for (var i = 0; i < len; i++) { |
| 35 |
if (i in this) { |
| 36 |
var val = this[i]; // in case fun mutates this |
| 37 |
if (fun.call(thisp, val, i, this)) { |
| 38 |
res.push(val); |
| 39 |
} |
| 40 |
} |
| 41 |
} |
| 42 |
|
| 43 |
return res; |
| 44 |
}; |
| 45 |
} |
| 46 |
/* END MIT License code */ |
| 47 |
|
| 48 |
function injectWidgetByXpath(xpath){ |
| 49 |
|
| 50 |
var n = getElementByXPath(xpath); |
| 51 |
|
| 52 |
// Default placement in case the xpath location is not found |
| 53 |
if (n==null){ |
| 54 |
n = document.getElementById("tbdefault"); |
| 55 |
} |
| 56 |
innerInject(n); |
| 57 |
} |
| 58 |
|
| 59 |
function injectWidgetByMarker(markerId){ |
| 60 |
var markerNode = document.getElementById(markerId); |
| 61 |
innerInject(markerNode.parentNode); |
| 62 |
} |
| 63 |
|
| 64 |
function innerInject(node){ |
| 65 |
|
| 66 |
var c = document.createElement("span"); |
| 67 |
var s = document.createElement("script"); |
| 68 |
|
| 69 |
// Notice that minifier will replce single quotes to double quotes. here it must remain with single quotes |
| 70 |
var noticeForDeveloper = "if JS crashes here, the first innerHTML value should be enclosed with single quotes instead of double, go to the minified version and change it"; |
| 71 |
c.innerHTML = '{{HTML}}'; |
| 72 |
s.innerHTML = "{{SCRIPT}}"; |
| 73 |
|
| 74 |
insertAfter(c,node); |
| 75 |
insertAfter(s,c); |
| 76 |
} |
| 77 |
|
| 78 |
|
| 79 |
|
| 80 |
|
| 81 |
|