Fixed application of CSS class 'sortable' to stacked inline elements that are sortable which was somehow excluded from the previous release.
parent
9145da6a23
commit
e206dfc30c
|
|
@ -1,6 +1,8 @@
|
||||||
jQuery(function($){
|
jQuery(function($){
|
||||||
if ($(':hidden[name="admin_sorting_url"]').length > 0)
|
if ($(':hidden[name="admin_sorting_url"]').length > 0)
|
||||||
{
|
{
|
||||||
|
var sortable_inline_rows = $('.inline-group .inline-related');
|
||||||
|
sortable_inline_rows.addClass('sortable');
|
||||||
$('.inline-group').sortable({
|
$('.inline-group').sortable({
|
||||||
axis : 'y',
|
axis : 'y',
|
||||||
containment : 'parent',
|
containment : 'parent',
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,6 +1,8 @@
|
||||||
jQuery(function($){
|
jQuery(function($){
|
||||||
if ($(':hidden[name="admin_sorting_url"]').length > 0)
|
if ($(':hidden[name="admin_sorting_url"]').length > 0)
|
||||||
{
|
{
|
||||||
|
var sortable_inline_rows = $('.inline-group .inline-related');
|
||||||
|
sortable_inline_rows.addClass('sortable');
|
||||||
$('.inline-group').sortable({
|
$('.inline-group').sortable({
|
||||||
axis : 'y',
|
axis : 'y',
|
||||||
containment : 'parent',
|
containment : 'parent',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue