mouseEnterSupported = (parseInt(version[0]) >= 2) || (parseInt(version[1]) >= 7) || (parseInt(version[2]) >= 1),
mouseCache = {},
elContains = function(parent, child) {
- if(parent && parent.firstChild){
+ if(parent && parent.firstChild){
while(child) {
if(child === parent) {
return true;
}
- child = child.parentNode;
+ child = child.parentNode;
if(child && (child.nodeType != 1)) {
child = null;
}
return false;
},
checkRelatedTarget = function(e) {
- return !elContains(e.currentTarget, pub.getRelatedTarget(e));
+ return !elContains(e.currentTarget, Ext.lib.Event.getRelatedTarget(e));
};
Ext.lib.Dom = {
isAncestor : function(p, c){ // missing from prototype?
var ret = false;
-
+
p = Ext.getDom(p);
c = Ext.getDom(c);
if (p && c) {
return !!(p.compareDocumentPosition(c) & 16);
} else {
while (c = c.parentNode) {
- ret = c == p || ret;
+ ret = c == p || ret;
}
- }
- }
+ }
+ }
return ret;
},
un : function(el, eventName, fn){
if((eventName == 'mouseenter' || eventName == 'mouseleave') && !mouseEnterSupported){
- var item = mouseCache[el.id],
+ var item = mouseCache[el.id],
ev = item && item[eventName];
if(ev){
};
var createResponse = function(cb, xhr){
var headerObj = {},
- headerStr,
+ headerStr,
t,
s;
try {
- headerStr = xhr.getAllResponseHeaders();
+ headerStr = xhr.getAllResponseHeaders();
Ext.each(headerStr.replace(/\r\n/g, '\n').split('\n'), function(v){
t = v.indexOf(':');
if(t >= 0){
}
});
} catch(e) {}
-
+
return {
responseText: xhr.responseText,
responseXML : xhr.responseXML,
abort : function(trans){
return false;
},
-
+
serializeForm : function(form){
return Form.serialize(form.dom||form);
}
Ext.lib.Anim = function(){
-
+
var easings = {
easeOut: function(pos) {
return 1-Math.pow(1-pos,2);
libFlyweight.dom = el;
return libFlyweight;
}
-
+
Ext.lib.Region = function(t, r, b, l) {
this.top = t;
this[1] = t;