123456789101112131415161718192021 |
- // Licensed Materials - Property of IBM
- //
- // IBM Cognos Products: pps
- //
- // (C) Copyright IBM Corp. 2005, 2017
- //
- // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- function getReal(el) {
- var temp = el;
- while ((temp != null) && (temp.tagName != "BODY")) {
- if ((temp.className == "moveme") || (temp.className == "handle")){
- el = temp;
- return el;
- }
- temp = temp.parentElement;
- }
- return el;
- }
|