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 {