typos
This commit is contained in:
parent
082d26e553
commit
ec1800376a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user