You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of the_sortable_tree update which adds the rails 5.1 compatibility. The TheSortableTreeController::DefineDeprecatedMethods module provides the head_respond method that all the methods use.
The TheSortableTreeController::DefineDeprecatedMethods is needed in all other modules but in the current master branch it is not included in the modules that use it. So in implementation you need to include the required modules and the deprecated method module otherwise the other modules will error.
The deprecated methods module should probably be included in any module that use it to streamline implementation. PR incoming.
The text was updated successfully, but these errors were encountered:
As of the_sortable_tree update which adds the rails 5.1 compatibility. The
TheSortableTreeController::DefineDeprecatedMethods
module provides thehead_respond
method that all the methods use.The
TheSortableTreeController::DefineDeprecatedMethods
is needed in all other modules but in the current master branch it is not included in the modules that use it. So in implementation you need to include the required modules and the deprecated method module otherwise the other modules will error.The deprecated methods module should probably be included in any module that use it to streamline implementation. PR incoming.
The text was updated successfully, but these errors were encountered: