From a23ad244d0fc55ac60ff01b3d91769329647e1dd Mon Sep 17 00:00:00 2001 From: KeyserSosa Date: Fri, 18 Jul 2008 16:19:26 -0700 Subject: [PATCH] patch for sharing glitch in IE --- r2/r2/public/static/link.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/r2/r2/public/static/link.js b/r2/r2/public/static/link.js index 84c10862a..81c79d03c 100644 --- a/r2/r2/public/static/link.js +++ b/r2/r2/public/static/link.js @@ -526,7 +526,8 @@ ThingForm.prototype = { attach: function(where) { if (this.form.parentNode) { if(this.form.parentNode != where) { - // TODO + this.form.parentNode.removeChild(this.form); + where.insertBefore(this.form, where.firstChild); } } else {