Opened 15 years ago

Closed 15 years ago

#4041 closed bug (fixed)

sortable fixed position bug in webkit

Reported by: smoofles Owned by:
Priority: critical Milestone: 1.7
Component: ui.sortable Version: 1.6rc6
Keywords: Cc:
Blocked by: Blocking:

Description

http://demo.lepilo.at/lpl_sorting_test.html

In WebKit based browsers (Chrome, Safari, WebKit nightly), the two sortable lists in the right sidebar work correctly if the page is not scrolled down (scrollTop = 0). However, scrolling the page down (as viewing the main content area needs), confuses the sorting: the dragged element effects the position of the other elements relatively to the page's scroll amount. No scroll and it behaves fine, ~50 pixels and it seems to effect only elements when it's 100 pixels away from them, etc. This is the sortable() code used for that, as seen in /javascripts/lpl.lab.js

  $(".inspector_list").sortable({ 
    /* connectWith: ["ul.lpl_topics_container > .container > .encapsulate"], */
    axis: "y",
    tolerance: "pointer",
    scrollSensitivity: 600
  }); 

It works fine with FireFox and Minefield.

Attachments (1)

default.html (987 bytes) - added by Scott González 15 years ago.
minimal test case

Download all attachments as: .zip

Change History (3)

comment:1 Changed 15 years ago by Scott González

Milestone: TBD1.6
Priority: blockercritical
Summary: sortable doesn't work correctly in webkit browsers when scrollTop is > 0sortable fixed position bug in webkit

This seems to be limited to fixed position elements.

Changed 15 years ago by Scott González

Attachment: default.html added

minimal test case

comment:2 Changed 15 years ago by paul

Resolution: fixed
Status: newclosed

Fixed in r2077.

Note: See TracTickets for help on using tickets.