Skip to content

Instantly share code, notes, and snippets.

@Inontran
Created October 9, 2020 07:00
Show Gist options
  • Select an option

  • Save Inontran/aa312239deec53099128d5ca54e11654 to your computer and use it in GitHub Desktop.

Select an option

Save Inontran/aa312239deec53099128d5ca54e11654 to your computer and use it in GitHub Desktop.
переставить дочерние элементы в обратном порядке
reverseCoords: function($partItem){
$items = $('.point-coords__items-js', $partItem);
$items.children().each(function (i, li) {
$items.prepend(li);
});
this.rewriteSerialNumberPoints($items);
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment