genmove.js 487 B

123456789101112131415161718192021
  1. // Licensed Materials - Property of IBM
  2. //
  3. // IBM Cognos Products: pps
  4. //
  5. // (C) Copyright IBM Corp. 2005, 2017
  6. //
  7. // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  8. function getReal(el) {
  9. var temp = el;
  10. while ((temp != null) && (temp.tagName != "BODY")) {
  11. if ((temp.className == "moveme") || (temp.className == "handle")){
  12. el = temp;
  13. return el;
  14. }
  15. temp = temp.parentElement;
  16. }
  17. return el;
  18. }