Flowdock
method

move_lower

Importance_0
v1.1.6 - Show latest stable - 0 notes - Class: ActiveRecord::Acts::List::InstanceMethods
move_lower() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/acts/list.rb, line 83
        def move_lower
          return unless lower_item

          acts_as_list_class.transaction do
            lower_item.decrement_position
            increment_position
          end
        end
Register or log in to add new notes.