diff --git a/war/src/main/webapp/scripts/behavior.js b/war/src/main/webapp/scripts/behavior.js index 32cbad6e7f4c202f712c81868338225f2d76011c..f35b2d6401042fa975f24b7615439d712b4f947d 100644 --- a/war/src/main/webapp/scripts/behavior.js +++ b/war/src/main/webapp/scripts/behavior.js @@ -101,20 +101,20 @@ Behaviour.start(); -- Opera 7 fails */ -function getAllChildren(e) { - // Returns all children of element. Workaround required for IE5/Windows. Ugh. - return e.all ? e.all : e.getElementsByTagName('*'); -} +function findElementsBySelector(startNode,selector) { + function getAllChildren(e) { + // Returns all children of element. Workaround required for IE5/Windows. Ugh. + return e.all ? e.all : e.getElementsByTagName('*'); + } -function isAncestor(p,c) { - while(true) { - if(p==c) return true; - if(c==null) return false; - c = c.parentNode; - } -} + function isAncestor(p,c) { + while(true) { + if(p==c) return true; + if(c==null) return false; + c = c.parentNode; + } + } -function findElementsBySelector(startNode,selector) { // Split selector in to tokens var tokens = selector.replace(/^\s+/,'').replace(/\s+$/,'').split(' '); var currentContext = new Array(startNode);