Add $() around clone in appendChild. Crome (and others?) otherways complains that certain HTML Elements (p and div) does not have the appendTo nor the get method.
This commit is contained in:
parent
0da5a7f832
commit
06cba092fb
|
@ -565,8 +565,8 @@
|
||||||
function(eventHandlers) { return eventHandlers; },
|
function(eventHandlers) { return eventHandlers; },
|
||||||
function(view) {
|
function(view) {
|
||||||
var clone = $(deepClone(domNode));
|
var clone = $(deepClone(domNode));
|
||||||
clone.appendTo($(view.focus));
|
$(clone).appendTo($(view.focus));
|
||||||
view.focus = clone.get(0);
|
view.focus = $(clone).get(0);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user