This commit is contained in:
Rolux 2010-02-11 00:22:46 +05:30
parent 082d26e553
commit ec1800376a

View File

@ -773,7 +773,7 @@ requires
// private
function wrapjQuery() {
$.each(oxui.jQueryFunctions, function(i, fn) {
that[v] = function() {
that[fn] = function() {
var args = arguments,
length = args.length,
id, ret, $element;
@ -781,15 +781,15 @@ requires
// if an ox object was passed
// then pass its $element instead
// so we can do oxObj.jqFn(oxObj)
if (arg.ox) {
if (arg.ox) { // fixme: or is this too much magic?
if (fn == "appendTo" && arg.$content) {
args[i] = v.$content
args[i] = arg.$content
} else {
args[i] = v.$element;
args[i] = arg.$element;
}
}
});
if (v == "html" && that.$content) {
if (fn == "html" && that.$content) { // fixme: or is this too much magic?
$element = that.$content;
} else {
$element = that.$element;