FLUID-1286: Inline Edit - text editor ('.editContainer') is placed too far from actual editable text

Metadata

Source
FLUID-1286
Type
Bug
Priority
Major
Status
Closed
Resolution
Fixed
Assignee
N/A
Reporter
Jacob Farber
Created
2008-08-21T10:21:31.000-0400
Updated
2008-09-09T11:02:48.000-0400
Versions
  1. 0.4
Fixed Versions
N/A
Component
  1. Inline Edit

Description

The container for the inline editor is appended to the end of the content, when it should be appended immediately after the piece of editable text

Comments

  • Jacob Farber commented 2008-09-09T11:02:20.000-0400

    changed
    that.container.append(editContainer);
    to
    that.viewEl.after(editContainer);

    to immediately append the input container