Project

General

Profile

Patch #24062

Updated by Toshi MARUYAMA over 7 years ago

Here is a patch which allows only vertical reordering for positioned items: 

 <pre><code class="diff"> <pre> 
 From: Vincent Robert <vincent.robert@nanego.com> 
 Date: Thu, 13 Oct 2016 12:04:01 +0200 
 Subject: Vertical reordering only 

 --- 
  public/javascripts/application.js | 1 + 
  1 file changed, 1 insertion(+) 

 diff --git a/public/javascripts/application.js b/public/javascripts/application.js 
 index 087d3de..b303702 100644 
 --- a/public/javascripts/application.js 
 +++ b/public/javascripts/application.js 
 @@ -597,6 +597,7 @@ function beforeShowDatePicker(input, inst) { 
      }, options ); 

      return this.sortable($.extend({ 
 +        axis: 'y', 
        handle: ".sort-handle", 
        helper: function(event, ui){ 
          ui.children('td').each(function(){ 
 -- 
 </code></pre> </pre> 

 Thank you for considering this tiny contribution ;)

Back