From 06cba092fb5f8a195099ed0e92c0ef27b795df24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Axel=20S=C3=B8gaard?= Date: Thu, 19 Jul 2012 17:31:54 +0300 Subject: [PATCH] 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. --- web-world/js-impl.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-world/js-impl.js b/web-world/js-impl.js index 48acf90..22211fe 100644 --- a/web-world/js-impl.js +++ b/web-world/js-impl.js @@ -565,8 +565,8 @@ function(eventHandlers) { return eventHandlers; }, function(view) { var clone = $(deepClone(domNode)); - clone.appendTo($(view.focus)); - view.focus = clone.get(0); + $(clone).appendTo($(view.focus)); + view.focus = $(clone).get(0); } ); };