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:
Jens Axel Søgaard 2012-07-19 17:31:54 +03:00
parent 0da5a7f832
commit 06cba092fb

View File

@ -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);
} }
); );
}; };