dom-compat.js revision f71368698a6b237a7198b4ec46713391d442abd0
(function() {
var propertyCache = {};
var patterns = {
};
var hyphenToCamel = function(property) {
return property; // no hyphens
}
return propertyCache[property];
}
}
return converted;
//return property.replace(/-([a-z])/gi, function(m0, m1) {return m1.toUpperCase()}) // cant use function as 2nd arg yet due to safari bug
};
var Dom = {
if (el) {
return el;
}
}
var c = [];
}
return c;
}
return el; // some other object, just pass it back
}
return null;
},
},
inDocument: function(el) {
},
return false;
}
if (args) {
}
if (args) {
} else {
}
};
}
var collection = [];
}
return collection;
},
// 2.x returns false if already present
return false;
}
return true;
},
// 2.x returns false if not present
return false;
}
return true;
},
// 2.x returns false if no newClass or same as oldClass
return false;
}
return true;
},
var nodes = [];
if (root) {
}
return nodes;
},
var nodes = [];
if (root) {
}
return nodes;
},
}
if (el) {
}
return id;
},
return false;
}
},
});
},
});
}
};
};
};
var wrapped = {
},
}
};
var batched = {
};
};
});
this.top = t;
this[1] = t;
this.right = r;
this.bottom = b;
this.left = l;
this[0] = l;
};
// this.logger.debug("does " + this + " contain " + region + " ... " + ret);
};
};
if (b >= t && r >= l) {
} else {
return null;
}
};
};
return ( "Region {" +
"top: " + this.top +
", right: " + this.right +
", bottom: " + this.bottom +
", left: " + this.left +
"}" );
};
};
y = x[1]; // dont blow away x yet
x = x[0];
}
};
})();