thomascube
2011-09-28 63d6e6dfc35e6d82c4a64f37c408794c163becd4
program/js/common.js
@@ -347,13 +347,25 @@
          break;
      }
    }
    if (ret)
      delete ret.event;
    if (ret && ret.event) {
      try {
        delete ret.event;
      } catch (err) {
        // IE6-7 doesn't support deleting HTMLFormElement attributes (#1488017)
        $(ret).removeAttr('event');
      }
    }
  }
  this._event_exec = false;
  delete e.event;
  if (e.event) {
    try {
      delete e.event;
    } catch (err) {
      // IE6-7 doesn't support deleting HTMLFormElement attributes (#1488017)
      $(e).removeAttr('event');
    }
  }
  return ret;
}
@@ -383,21 +395,17 @@
      parent = arg.parent,
      obj = document.createElement('DIV');
    with (obj) {
      id = this.name;
      with (style) {
       position = 'absolute';
        visibility = (vis) ? (vis==2) ? 'inherit' : 'visible' : 'hidden';
        left = l+'px';
        top = t+'px';
        if (w)
         width = w.toString().match(/\%$/) ? w : w+'px';
        if (h)
         height = h.toString().match(/\%$/) ? h : h+'px';
        if (z)
          zIndex = z;
     }
    }
    obj.id = this.name;
    obj.style.position = 'absolute';
    obj.style.visibility = (vis) ? (vis==2) ? 'inherit' : 'visible' : 'hidden';
    obj.style.left = l+'px';
    obj.style.top = t+'px';
    if (w)
     obj.style.width = w.toString().match(/\%$/) ? w : w+'px';
    if (h)
     obj.style.height = h.toString().match(/\%$/) ? h : h+'px';
    if (z)
      obj.style.zIndex = z;
    if (parent)
      parent.appendChild(obj);
@@ -611,10 +619,10 @@
      return null;
  }
  else {
    begin += 2;
    begin += 2;
  }
  var end = document.cookie.indexOf(";", begin);
  var end = dc.indexOf(";", begin);
  if (end == -1)
    end = dc.length;