Projet

Général

Profil

0001-misc-fix-dragging-elements-over-the-page-edget-8112.patch

Frédéric Péters, 24 août 2015 18:17

Télécharger (961 octets)

Voir les différences:

Subject: [PATCH] misc: fix dragging elements over the page edget (#8112)

 wcs/qommon/static/js/biglist.js | 5 +++++
 1 file changed, 5 insertions(+)
wcs/qommon/static/js/biglist.js
1 1
$(document).ready(
2 2
    function () {
3
        if ($('ul.biglist.sortable').length) {
4
            /* work around a jquery bug with .sortable() called on a container
5
             * set with position: relative and overflow properties */
6
            $('#main-content').css('overflow', 'inherit');
7
        }
3 8
        $('ul.biglist.sortable').sortable(
4 9
            {
5 10
                accept: 'biglistitem',
6
-